diff --git a/.github/workflows/add-new-issues-to-project.yml b/.github/workflows/add-new-issues-to-project.yml new file mode 100644 index 00000000..63932bb4 --- /dev/null +++ b/.github/workflows/add-new-issues-to-project.yml @@ -0,0 +1,16 @@ +name: Add new issues to GNS3 project + +on: + issues: + types: + - opened + +jobs: + add-to-project: + name: Add issue to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.4.0 + with: + project-url: https://github.com/orgs/GNS3/projects/3 + github-token: ${{ secrets.ADD_NEW_ISSUES_TO_PROJECT }} diff --git a/.github/workflows/publish_api_documentation.yml b/.github/workflows/publish-api-documentation.yml similarity index 100% rename from .github/workflows/publish_api_documentation.yml rename to .github/workflows/publish-api-documentation.yml