diff options
author | Francesco Borzì <borzifrancesco@gmail.com> | 2022-10-28 16:30:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-28 16:30:41 +0200 |
commit | 4d88f7e329b99a8b591dab8c0f30a9d0887fc284 (patch) | |
tree | eab59069bbaff999cedd65b133c36111cebd0765 /.github | |
parent | 9d93a7e4d936e60b1c515c63f3d77da3725c8faf (diff) |
feat(CI): first experiment with add-to-project
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/add-to-project.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/add-to-project.yml b/.github/workflows/add-to-project.yml new file mode 100644 index 0000000000..a46a01139b --- /dev/null +++ b/.github/workflows/add-to-project.yml @@ -0,0 +1,18 @@ +name: Add issues to projects + +on: + issues: + types: [opened, labeled] + issue_comment: + types: [created] + +jobs: + add-to-project: + name: Add issue to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.3.0 + with: + project-url: https://github.com/azerothcore/azerothcore-wotlk/projects/14 + github-token: ${{ secrets.GITHUB_TOKEN }} + labeled: 1-19 |