Skip to content

Commit bd700c2

Browse files
fcj
1 parent aa104d5 commit bd700c2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+2477
-5565
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: /
5+
schedule:
6+
interval: daily
7+
8+
- package-ecosystem: gomod
9+
directory: /
10+
schedule:
11+
interval: daily

.github/workflows/a.yml

Whitespace-only changes.
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Release GitHub Actions
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
tag:
7+
description: "Tag for the release"
8+
required: true
9+
10+
11+
permissions:
12+
contents: read
13+
14+
jobs:
15+
release:
16+
permissions:
17+
actions: read
18+
id-token: write
19+
contents: write
20+
21+
uses: step-security/reusable-workflows/.github/workflows/actions_release.yaml@v1
22+
with:
23+
tag: "${{ github.event.inputs.tag }}"
24+
25+
assets:
26+
needs: release
27+
runs-on: macos-latest
28+
env:
29+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30+
steps:
31+
- name: Check out source code
32+
uses: actions/checkout@v6
33+
with:
34+
fetch-depth: 0
35+
36+
- name: Set up Go
37+
uses: actions/setup-go@v6
38+
with:
39+
go-version-file: go.mod
40+
cache: true
41+
42+
- name: Upload assets to release
43+
run: |
44+
go build -o gh-setup .
45+
gh release upload "${{ github.event.inputs.tag }}" gh-setup
46+
env:
47+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/audit-package.yml

Lines changed: 0 additions & 183 deletions
This file was deleted.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Auto Cherry-Pick from Upstream
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
base_branch:
7+
description: "Base branch to create the PR against"
8+
required: true
9+
default: "main"
10+
11+
permissions:
12+
contents: write
13+
pull-requests: write
14+
packages: read
15+
issues: write
16+
17+
jobs:
18+
cherry-pick:
19+
uses: step-security/reusable-workflows/.github/workflows/auto_cherry_pick.yaml@v1
20+
with:
21+
original-owner: "k1LoW"
22+
repo-name: "gh-setup"
23+
base_branch: ${{ inputs.base_branch }}

0 commit comments

Comments
 (0)