From 851723b040c7748f873123d5f2699bf72aa7143f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arturo=20Filast=C3=B2?= Date: Wed, 8 Jan 2025 18:05:53 +0100 Subject: [PATCH] Add issues to project workflow --- .github/workflows/add_issues_to_project.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/add_issues_to_project.yml diff --git a/.github/workflows/add_issues_to_project.yml b/.github/workflows/add_issues_to_project.yml new file mode 100644 index 00000000..b1f07aac --- /dev/null +++ b/.github/workflows/add_issues_to_project.yml @@ -0,0 +1,14 @@ +on: + issues: + types: + - opened + +jobs: + add-to-project: + name: Add issue to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@RELEASE_VERSION + with: + project-url: https://github.com/orgs/ooni/projects/31 + github-token: ${{ secrets.ADD_TO_PROJECT_GH_TOKEN }}