Skip to content

Commit

Permalink
Remove dry run steps for release automation
Browse files Browse the repository at this point in the history
  • Loading branch information
christiandeange committed Nov 10, 2024
1 parent 36d5e56 commit bf5c4bb
Showing 1 changed file with 6 additions and 16 deletions.
22 changes: 6 additions & 16 deletions .github/workflows/update_lexicons.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,19 +62,9 @@ jobs:
if: steps.changed-files.outputs.files_changed == 'true'
run: ./scripts/bump_version.sh ${{ steps.bump-semver.outputs.new_version }}

- name: Dry Run - Get Changed Files
uses: tj-actions/verify-changed-files@v20
id: all-changed-files

- name: Dry Run - List Changed Files
env:
ALL_CHANGED_FILES: ${{ steps.all-changed-files.outputs.changed_files }}
run: |
echo "Changed files: $ALL_CHANGED_FILES"
# - name: Commit Changes
# uses: stefanzweifel/git-auto-commit-action@v4
# if: steps.changed-files.outputs.files_changed == 'true'
# with:
# commit_message: [${{ steps.bump-semver.outputs.new_version }}] Update lexicons from atproto
# tagging_message: ${{ steps.bump-semver.outputs.new_version }}
- name: Commit Changes
uses: stefanzweifel/git-auto-commit-action@v4
if: steps.changed-files.outputs.files_changed == 'true'
with:
commit_message: "[${{ steps.bump-semver.outputs.new_version }}] Update lexicons from atproto"
tagging_message: "${{ steps.bump-semver.outputs.new_version }}"

0 comments on commit bf5c4bb

Please sign in to comment.