From 83cb8693e6cb3526399d91853256790f067dc13c Mon Sep 17 00:00:00 2001 From: grossmj Date: Tue, 31 Jan 2023 09:31:52 +0800 Subject: [PATCH] Automatically add new issues to GNS3 project --- .github/workflows/add-new-issues-to-project.yml | 16 ++++++++++++++++ ...ntation.yml => publish-api-documentation.yml} | 0 2 files changed, 16 insertions(+) create mode 100644 .github/workflows/add-new-issues-to-project.yml rename .github/workflows/{publish_api_documentation.yml => publish-api-documentation.yml} (100%) 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