Skip to content

Commit bd07bb9

Browse files
authored
Merge branch 'main' into renovate/major-react-monorepo
2 parents fadb183 + c4800dc commit bd07bb9

File tree

2 files changed

+1051
-832
lines changed

2 files changed

+1051
-832
lines changed

.github/workflows/add-to-project.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Add new issue to project
2+
on:
3+
issues:
4+
types:
5+
- opened
6+
jobs:
7+
track_pr:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Generate token
11+
id: generate_token
12+
uses: tibdex/github-app-token@v1.5.0
13+
with:
14+
app_id: ${{ secrets.TOKENS_APP_ID }}
15+
private_key: ${{ secrets.TOKENS_PRIVATE_KEY }}
16+
- name: Add issue to Project
17+
uses: actions/add-to-project@v0.1.0
18+
with:
19+
project-url: https://github.com/orgs/netlify/projects/199
20+
github-token: ${{ steps.generate_token.outputs.token }}

0 commit comments

Comments
 (0)