From 8c15ad605f875165ff4cbd0ef4b2b5b826834541 Mon Sep 17 00:00:00 2001 From: fserranoarrese Date: Thu, 2 Feb 2023 12:40:19 +0100 Subject: [PATCH 1/9] Dummy change --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 3d71d48..4480657 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Fullstack Toolbox +Transition your business to the digital world + Fullstack Toolbox This is a fullstack *template* that allows to create a fast MVP for any web From 514226d6877ec1827e6f1f3a50940d4b5492d9bc Mon Sep 17 00:00:00 2001 From: fserranoarrese Date: Thu, 2 Feb 2023 14:57:07 +0100 Subject: [PATCH 2/9] Add the remove label workflow --- .github/workflows/remove-labels-on-push.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/remove-labels-on-push.yml diff --git a/.github/workflows/remove-labels-on-push.yml b/.github/workflows/remove-labels-on-push.yml new file mode 100644 index 0000000..fbce361 --- /dev/null +++ b/.github/workflows/remove-labels-on-push.yml @@ -0,0 +1,15 @@ +name: Remove Labels + +on: [push] + +jobs: + remove_labels: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions-ecosystem/action-remove-labels@v1 + if: ${{ startsWith(github.event.comment.body, '/remove-labels') }} + with: + labels: | + documentation + bug From c258aac0244291456438beafad82e2fb07e3da8c Mon Sep 17 00:00:00 2001 From: fserranoarrese Date: Thu, 2 Feb 2023 14:59:05 +0100 Subject: [PATCH 3/9] Remove unnecessary comment --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 4480657..3d71d48 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ # Fullstack Toolbox -Transition your business to the digital world - Fullstack Toolbox This is a fullstack *template* that allows to create a fast MVP for any web From 5ac2c5696fd1da1aea0d325960f7ba3066088bef Mon Sep 17 00:00:00 2001 From: fserranoarrese Date: Thu, 2 Feb 2023 15:10:49 +0100 Subject: [PATCH 4/9] Fix --- .github/workflows/remove-labels-on-push.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/remove-labels-on-push.yml b/.github/workflows/remove-labels-on-push.yml index fbce361..6849aaf 100644 --- a/.github/workflows/remove-labels-on-push.yml +++ b/.github/workflows/remove-labels-on-push.yml @@ -1,6 +1,6 @@ name: Remove Labels -on: [push] +on: push jobs: remove_labels: From 2cd3e02d9be3c77502d88d71dc9e6abf4b2357c9 Mon Sep 17 00:00:00 2001 From: fserranoarrese Date: Thu, 2 Feb 2023 15:16:35 +0100 Subject: [PATCH 5/9] /remove-labels From c31798b7f1080bd7f8590729254123777a1750a3 Mon Sep 17 00:00:00 2001 From: fserranoarrese Date: Thu, 2 Feb 2023 15:20:14 +0100 Subject: [PATCH 6/9] Remove condition --- .github/workflows/remove-labels-on-push.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/remove-labels-on-push.yml b/.github/workflows/remove-labels-on-push.yml index 6849aaf..6da6305 100644 --- a/.github/workflows/remove-labels-on-push.yml +++ b/.github/workflows/remove-labels-on-push.yml @@ -8,7 +8,6 @@ jobs: steps: - uses: actions/checkout@v2 - uses: actions-ecosystem/action-remove-labels@v1 - if: ${{ startsWith(github.event.comment.body, '/remove-labels') }} with: labels: | documentation From 6cbf7c125683300b071309a787d15115b7176a46 Mon Sep 17 00:00:00 2001 From: fserranoarrese Date: Thu, 2 Feb 2023 17:03:30 +0100 Subject: [PATCH 7/9] fix --- .github/workflows/remove-labels-on-push.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/remove-labels-on-push.yml b/.github/workflows/remove-labels-on-push.yml index 6da6305..b2d432c 100644 --- a/.github/workflows/remove-labels-on-push.yml +++ b/.github/workflows/remove-labels-on-push.yml @@ -8,7 +8,9 @@ jobs: steps: - uses: actions/checkout@v2 - uses: actions-ecosystem/action-remove-labels@v1 + if: ${{ startsWith(github.event.comment.body, '/add-labels') }} with: + github_token: ${{ secrets.github_token }} labels: | documentation bug From 69bfe816efff20955495e9648d5d7bdbf8824d63 Mon Sep 17 00:00:00 2001 From: fserranoarrese Date: Thu, 2 Feb 2023 17:04:52 +0100 Subject: [PATCH 8/9] Fix --- .github/workflows/remove-labels-on-push.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/remove-labels-on-push.yml b/.github/workflows/remove-labels-on-push.yml index b2d432c..2ed3a53 100644 --- a/.github/workflows/remove-labels-on-push.yml +++ b/.github/workflows/remove-labels-on-push.yml @@ -8,7 +8,6 @@ jobs: steps: - uses: actions/checkout@v2 - uses: actions-ecosystem/action-remove-labels@v1 - if: ${{ startsWith(github.event.comment.body, '/add-labels') }} with: github_token: ${{ secrets.github_token }} labels: | From 3dc0f41003968f8dd8f30b4a2915aedcdaa0dbc0 Mon Sep 17 00:00:00 2001 From: fserranoarrese Date: Thu, 2 Feb 2023 17:12:45 +0100 Subject: [PATCH 9/9] Fix --- .github/workflows/remove-labels-on-push.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/remove-labels-on-push.yml b/.github/workflows/remove-labels-on-push.yml index 2ed3a53..7e02fea 100644 --- a/.github/workflows/remove-labels-on-push.yml +++ b/.github/workflows/remove-labels-on-push.yml @@ -10,6 +10,4 @@ jobs: - uses: actions-ecosystem/action-remove-labels@v1 with: github_token: ${{ secrets.github_token }} - labels: | - documentation - bug + labels: bug