-
Notifications
You must be signed in to change notification settings - Fork 1.6k
43 lines (41 loc) · 1.5 KB
/
gardener_open_pr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Add new pull requests to Gardener project board for triage
name: Add PR to Gardener board
on:
pull_request_target:
types:
- opened
- reopened
jobs:
add-contributor-to-project:
name: Add contributor PR to Gardener project board
runs-on: ubuntu-latest
timeout-minutes: 5
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- name: Generate authentication token
id: generate_token
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a
with:
app_id: ${{ secrets.GH_APP_DATADOG_VECTOR_CI_APP_ID }}
private_key: ${{ secrets.GH_APP_DATADOG_VECTOR_CI_APP_PRIVATE_KEY }}
- uses: tspascoal/get-user-teams-membership@v3
id: checkVectorMember
with:
username: ${{ github.actor }}
team: vector
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}
- uses: actions/[email protected]
if: ${{ steps.checkVectorMember.outputs.isTeamMember == 'false' }}
with:
project-url: https://github.com/orgs/vectordotdev/projects/49
github-token: ${{ secrets.GH_PROJECT_PAT }}
add-dependabot-to-project:
name: Add dependabot PR to Gardener project board
runs-on: ubuntu-latest
timeout-minutes: 5
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- uses: actions/[email protected]
with:
project-url: https://github.com/orgs/vectordotdev/projects/49
github-token: ${{ secrets.GH_PROJECT_PAT }}