chore: update github action with correct dependabot actor (#7485)

This commit is contained in:
Fabi 2024-03-01 08:10:14 +01:00 committed by GitHub
parent ef8d0c86f7
commit 437c834a40
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,19 +23,20 @@ jobs:
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
- uses: tspascoal/get-user-teams-membership@v3 - uses: tspascoal/get-user-teams-membership@v3
id: checkUserMember id: checkUserMember
if: github.actor != 'dependabot[bot]'
with: with:
username: ${{ github.actor }} username: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.ADD_TO_PROJECT_PAT }} GITHUB_TOKEN: ${{ secrets.ADD_TO_PROJECT_PAT }}
- name: add pr - name: add pr
uses: actions/add-to-project@v0.5.0 uses: actions/add-to-project@v0.5.0
if: ${{ github.event_name == 'pull_request_target' && !contains(steps.checkUserMember.outputs.teams, 'engineers') && github.actor != 'app/dependabot'}} if: ${{ github.event_name == 'pull_request_target' && github.actor != 'dependabot[bot]' && !contains(steps.checkUserMember.outputs.teams, 'engineers')}}
with: with:
# You can target a repository in a different organization # You can target a repository in a different organization
# to the issue # to the issue
project-url: https://github.com/orgs/zitadel/projects/2 project-url: https://github.com/orgs/zitadel/projects/2
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
- uses: actions-ecosystem/action-add-labels@v1.1.0 - uses: actions-ecosystem/action-add-labels@v1.1.0
if: ${{ github.event_name == 'pull_request_target' && !contains(steps.checkUserMember.outputs.teams, 'staff') && github.actor != 'app/dependabot'}} if: ${{ github.event_name == 'pull_request_target' && github.actor != 'dependabot[bot]' && !contains(steps.checkUserMember.outputs.teams, 'staff')}}
with: with:
github_token: ${{ secrets.ADD_TO_PROJECT_PAT }} github_token: ${{ secrets.ADD_TO_PROJECT_PAT }}
labels: | labels: |