Skip to content

Commit

Permalink
New workflow for adding opened issues to the CommITCrowd project
Browse files Browse the repository at this point in the history
Perhaps the title says it all. This is a really simple workflow, and it's open for any changes or adjustments.
  • Loading branch information
SilasPeters committed Oct 24, 2023
1 parent 3df86eb commit 0eba4f0
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/projects.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: projects

on:
issues:
types:
- opened

jobs:
add-to-project:
name: Add opened issue to CommITCrowd project
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
# URL of the project to add issues to
project-url: https://github.com/orgs/svsticky/projects/7
# A GitHub personal access token with write access to the project
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
# A comma-separated list of labels to use as a filter for issue to be added
# labeled: # optional
# The behavior of the labels filter, AND to match all labels, OR to match any label, NOT to exclude any listed label (default is OR)
# label-operator: # optional

0 comments on commit 0eba4f0

Please sign in to comment.