From 36366223022101e1df92462af18d7bcee9ef8ce3 Mon Sep 17 00:00:00 2001 From: Kentaro Hayashi Date: Tue, 7 Jan 2025 18:02:19 +0900 Subject: [PATCH 1/2] github: add action to add to fluent project Signed-off-by: Kentaro Hayashi --- .github/workflows/add-to-project.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/add-to-project.yml diff --git a/.github/workflows/add-to-project.yml b/.github/workflows/add-to-project.yml new file mode 100644 index 0000000..1ef1815 --- /dev/null +++ b/.github/workflows/add-to-project.yml @@ -0,0 +1,17 @@ +name: Add bugs to bugs project + +on: + issues: + types: + - opened + +jobs: + add-to-project: + name: Add issue to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@1.0.2 + with: + project-url: https://github.com/orgs/fluent/projects/4 + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} + labeled: waiting-for-triage From a9908c40bd8072f25cb4ab7609ef307a34ad385d Mon Sep 17 00:00:00 2001 From: Kentaro Hayashi Date: Tue, 7 Jan 2025 18:22:57 +0900 Subject: [PATCH 2/2] Update .github/workflows/add-to-project.yml Co-authored-by: Takuro Ashie --- .github/workflows/add-to-project.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/add-to-project.yml b/.github/workflows/add-to-project.yml index 1ef1815..d62768d 100644 --- a/.github/workflows/add-to-project.yml +++ b/.github/workflows/add-to-project.yml @@ -1,4 +1,4 @@ -name: Add bugs to bugs project +name: Add bugs to fluent project on: issues: