From e907d61f052b9dd8c4eb7a8a38956ab4869e07b9 Mon Sep 17 00:00:00 2001 From: Kim Christensen Date: Sun, 9 Jun 2024 23:01:49 +0200 Subject: [PATCH 1/2] Delete failing workflow Signed-off-by: Kim Christensen --- .github/workflows/assign-to-project.yaml | 29 ------------------------ 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/assign-to-project.yaml diff --git a/.github/workflows/assign-to-project.yaml b/.github/workflows/assign-to-project.yaml deleted file mode 100644 index d58a3ca..0000000 --- a/.github/workflows/assign-to-project.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# https://github.com/marketplace/actions/assign-to-one-project - -name: Assign to Project - -on: - issues: - types: [opened, labeled] - pull_request_target: - types: [opened, labeled] -env: - MY_GITHUB_TOKEN: ${{ secrets.ASSIGN_PROJECT_TOKEN }} - -jobs: - assign_one_project: - runs-on: ubuntu-latest - name: Assign Issue to Project - steps: - - name: Assign Issue to Project - uses: srggrs/assign-one-project-github-action@1.3.1 - if: ${{ github.event_name == 'issues' }} - with: - project: 'https://github.com/orgs/getporter/projects/1' - column_name: 'Inbox' - - name: Assign Pull Request to Project - uses: srggrs/assign-one-project-github-action@1.3.1 - if: ${{ github.event_name == 'pull_request_target' }} - with: - project: 'https://github.com/orgs/getporter/projects/1' - column_name: 'In Progress' From 8a7ac5f34ad46674b2646b1fec6bded4017b1547 Mon Sep 17 00:00:00 2001 From: Kim Christensen Date: Sun, 9 Jun 2024 23:01:55 +0200 Subject: [PATCH 2/2] Add checkout fetch depth Otherwise publishing won't work Signed-off-by: Kim Christensen --- .github/workflows/aws-mixin.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/aws-mixin.yml b/.github/workflows/aws-mixin.yml index 4645c31..4c4a29c 100644 --- a/.github/workflows/aws-mixin.yml +++ b/.github/workflows/aws-mixin.yml @@ -13,6 +13,8 @@ jobs: steps: - name: checkout uses: actions/checkout@v4 + with: + fetch-depth: 0 - uses: actions/setup-go@v5 with: go-version-file: go.mod