From da7df6948a759279f112f38dc0cdd3e45ae4363b Mon Sep 17 00:00:00 2001 From: Marcel Rosier Date: Tue, 12 Dec 2023 13:08:03 +0100 Subject: [PATCH 1/2] - more name changes --- .github/workflows/autoformat.yaml | 2 +- .github/workflows/lint.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/autoformat.yaml b/.github/workflows/autoformat.yaml index 953c402..8aff3af 100644 --- a/.github/workflows/autoformat.yaml +++ b/.github/workflows/autoformat.yaml @@ -5,7 +5,7 @@ on: types: [created, edited] jobs: - run-linters: + auto-format: # Check if the comment contains the trigger /format-action. # Check if the comments come from pull request, exclude those from issue. if: | diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index ee18870..c1e37c9 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -9,7 +9,7 @@ on: - main jobs: - run-linters: + lint: name: lint runs-on: ubuntu-latest From 509febcdbb9963dda33639c5f78e3181902727cc Mon Sep 17 00:00:00 2001 From: Marcel Rosier Date: Tue, 12 Dec 2023 13:10:15 +0100 Subject: [PATCH 2/2] - add token for commit --- .github/workflows/autoformat.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/autoformat.yaml b/.github/workflows/autoformat.yaml index 8aff3af..e22fcd6 100644 --- a/.github/workflows/autoformat.yaml +++ b/.github/workflows/autoformat.yaml @@ -33,3 +33,4 @@ jobs: black_auto_fix: true git_name: "Lint GitHub Action" git_email: "github-actions@github.com" + github_token: ${{ secrets.GITHUB_TOKEN }}