Skip to content

Commit

Permalink
Debug workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
champsupertramp committed Nov 27, 2023
1 parent 45c04c4 commit dc3c9a8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/increment-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,13 @@ jobs:
done
- name: Summaries Updated Plugins
id: um-plugins
shell: bash
run: |
echo 'UPDATED_PLUGINS<<EOF' >> $GITHUB_OUTPUT
for file in ${{ steps.changed-files-specific.outputs.all_changed_and_modified_files }}; do
"- $file" >> $GITHUB_OUTPUT
done
echo 'EOF' >> $GITHUB_OUTPUT
BUMPED_PLUGINS=''
for file in ${{ steps.changed-files-specific.outputs.all_changed_and_modified_files }}; do
BUMPED_PLUGINS+="- $file \n "
done
echo "UPDATED_PLUGINS=$BUMPED_PLUGINS" >> "$GITHUB_OUTPUT"
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion src/um-cron-delete/um-cron-delete.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Ultimate Member - Schedule User Deletions with WP Cronjob
* Plugin URI: http://ultimatemember.com/
* Description: Deletes users by status after X number of days/months/years
* Version: 1.0.3
* Version: 1.0.2
* Author: Ultimate Member Group Ltd.
* Author URI: https://ultimatemember.com
* UM version: 2.6.12
Expand Down
2 changes: 1 addition & 1 deletion src/um-fields-counter/um-fields-counter.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Ultimate Member - Fields Character and Words Counter
* Plugin URI: https://www.ultimatemember.com
* Description: Adds a counter for character and words length in textbox and textarea fields
* Version: 1.0.3
* Version: 1.0.2
* Author: Ultimate Member Ltd.
* Author URI: https://www.ultimatemember.com
* Text Domain: um-fields-counter
Expand Down

0 comments on commit dc3c9a8

Please sign in to comment.