Skip to content

Commit

Permalink
chore: Add workflow that adds issues/prs to project
Browse files Browse the repository at this point in the history
  • Loading branch information
wottpal committed Oct 9, 2023
1 parent 647e221 commit de34e03
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/add-to-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Add issue or pull request to project

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

jobs:
add-to-project:
name: Add issue or pull request to project
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
project-url: https://github.com/orgs/scio-labs/projects/3
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}

0 comments on commit de34e03

Please sign in to comment.