Skip to content

Commit

Permalink
attempt using other credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
drshriveer committed Jan 26, 2024
1 parent 85089b7 commit 9f3e738
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/post_merge.workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,22 @@ concurrency:

jobs:
update-interdependencies:
if: ${{ github.actor != 'github-actions[bot]' && github.event_name != 'push' || github.event.pusher.name != 'github-actions[bot]' }}
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.AUTO_COMMIT_BOT }}
- uses: ./.github/actions/setup-repo
- run: just update-interdependencies
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "[AutoCommit] update inter dependent modules"

release:
if: ${{ github.actor != 'github-actions[bot]' && github.event_name != 'push' || github.event.pusher.name != 'github-actions[bot]' }}
runs-on: ubuntu-latest
needs:
- update-interdependencies
Expand Down

0 comments on commit 9f3e738

Please sign in to comment.