Skip to content

chore: automatically add issues to project board #155

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 6, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/add-to-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Add new issue to project
on:
issues:
types:
- opened
jobs:
track_pr:
runs-on: ubuntu-latest
steps:
- name: Generate token
id: generate_token
uses: tibdex/[email protected]
with:
app_id: ${{ secrets.TOKENS_APP_ID }}
private_key: ${{ secrets.TOKENS_PRIVATE_KEY }}
- name: Add issue to Project
uses: actions/[email protected]
with:
project-url: https://github.com/orgs/netlify/projects/199
github-token: ${{ steps.generate_token.outputs.token }}