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 7, 2024
1 parent cc5e568 commit 044e4a2
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/pr-dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ 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.

jobs:
Expand Down Expand Up @@ -39,11 +40,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,
})
1 change: 1 addition & 0 deletions .github/workflows/pr-golangci-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: PR golangci-lint
on:
pull_request:
types: [opened, edited, synchronize, reopened]
workflow_dispatch:

# Remove all permissions from GITHUB_TOKEN except metadata.
permissions: {}
Expand Down

0 comments on commit 044e4a2

Please sign in to comment.