-
Notifications
You must be signed in to change notification settings - Fork 1
32 lines (32 loc) · 1.14 KB
/
Copy pathbuild-shims.yml
File metadata and controls
32 lines (32 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Build Shims
on: workflow_dispatch
permissions:
contents: write
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
- uses: crazy-max/ghaction-upx@v3
with:
install-only: true
- run: make shims
- uses: peter-evans/create-pull-request@v7
with:
add-paths: |
internal/bin/shim_*
reviewers: |
${{ github.actor }}
title: |
Bump internal/bin/shim_*
commit-message: |
Update internal/bin/shim_* built by GitHub Actions workflow "${{ github.workflow }}" for user ${{ github.actor }} from commit ${{ github.sha }}.
body: |
Update [internal/bin/shim_*](internal/bin) built by [GitHub Actions workflow "${{ github.workflow }}"](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}) for user ${{ github.actor }} from commit ${{ github.sha }}.
branch: github-actions/gen/internal/bin
delete-branch: true
labels: go