Skip to content

Commit

Permalink
build: Github action to auto-add new issues and PRs to project
Browse files Browse the repository at this point in the history
  • Loading branch information
DawoudSheraz authored Jan 12, 2024
1 parent 9f3f74a commit 4e3e3e1
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/auto-add-to-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Auto Add Issues and Pull Requests to Project

on:
pull_request:
types:
- opened
issues:
types:
- opened


jobs:
add-to-project:
name: Add issue and bugs to project
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
project-url: https://github.com/orgs/overhangio/projects/4
github-token: ${{ secrets.ADD_TO_PROJECT_SECRET_TOKEN }}

0 comments on commit 4e3e3e1

Please sign in to comment.