Skip to content

Commit

Permalink
Exp
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Büringer [email protected]
  • Loading branch information
sbueringer committed May 8, 2024
1 parent cc5e568 commit 659d01a
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 4 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/pr-dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ name: PR dependabot code generation and go modules fix
on:
pull_request:
branches:
- dependabot/**
- pr-dependabot-exp-test
push:
branches:
- dependabot/**
- pr-dependabot-exp-test
workflow_dispatch:

permissions:
actions: write # Allow to trigger the lint action.
contents: write # Allow to update the PR.
pull-requests: write # Allow to trigger the lint action.

jobs:
build:
Expand Down Expand Up @@ -39,11 +41,23 @@ jobs:
- name: Update all modules
run: make generate-modules
- name: Update generated code
run: make generate
run: touch test.txt
- uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # tag=v9.1.4
name: Commit changes
id: commit
with:
author_name: dependabot[bot]
author_email: 49699333+dependabot[bot]@users.noreply.github.com
default_author: github_actor
message: 'Update generated code'
- name: Trigger lint action
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
await github.rest.actions.createWorkflowDispatch({
owner: context.repo.owner,
repo: context.repo.repo,
workflow_id: 'pr-golangci-lint.yaml',
ref: context.ref,
})
10 changes: 9 additions & 1 deletion .github/workflows/pr-golangci-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ name: PR golangci-lint
on:
pull_request:
types: [opened, edited, synchronize, reopened]
workflow_dispatch:

# Remove all permissions from GITHUB_TOKEN except metadata.
permissions: {}
permissions:
statuses: write

jobs:
golangci:
Expand Down Expand Up @@ -33,3 +35,9 @@ jobs:
version: v1.57.2
args: --out-format=colored-line-number
working-directory: ${{matrix.working-directory}}
- name: Set latest commit status as ${{ job.status }}
uses: myrotvorets/set-commit-status-action@master
with:
sha: ${{ github.sha }}
token: ${{ secrets.GITHUB_TOKEN }}
status: ${{ job.status }}

0 comments on commit 659d01a

Please sign in to comment.