Skip to content

Commit

Permalink
fix: Fix lint rules workflow job name
Browse files Browse the repository at this point in the history
  • Loading branch information
riscait committed Feb 18, 2024
1 parent 5a169cf commit 545a5de
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/update-all-lint-rules.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
- cron: '0 0 * * 3'
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
branch: "update-all-lint-rules"

Expand Down Expand Up @@ -52,15 +56,15 @@ jobs:
name: Create Pull-Request
runs-on: ubuntu-latest
needs: [update]
if: ${{ needs.diff.outputs.has_diff == 'true' }}
if: ${{ needs.update.outputs.has_diff == 'true' }}
steps:
- uses: actions/checkout@v4
- name: Generate GiHub App token
id: generate_token
uses: actions/create-github-app-token@v1
with:
app_id: ${{ secrets.PR_WRITER_APP_ID }}
private_key: ${{ secrets.PR_WRITER_PRIVATE_KEY }}
app-id: ${{ secrets.PR_WRITER_APP_ID }}
private-key: ${{ secrets.PR_WRITER_PRIVATE_KEY }}

- name: Create PR
env:
Expand Down

0 comments on commit 545a5de

Please sign in to comment.