mirror of
https://github.com/zitadel/zitadel.git
synced 2025-06-01 22:08:29 +00:00
chore: update github action with correct dependabot actor (#7485)
This commit is contained in:
parent
ef8d0c86f7
commit
437c834a40
5
.github/workflows/issues.yml
vendored
5
.github/workflows/issues.yml
vendored
@ -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: |
|
||||||
|
Loading…
x
Reference in New Issue
Block a user