Skip to content

Commit 17f2e65

Browse files
phlogistonjohnmergify[bot]
authored andcommitted
workflows: update report-stable.yml actions file
Pin official github provided actions and remove the use of a third party action. Replace the 3rd party action with a very hokey manual step. Fixing this for real will involve some future research. Signed-off-by: John Mulligan <[email protected]>
1 parent cae4fed commit 17f2e65

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

.github/workflows/report-stable.yml

+12-9
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,26 @@ jobs:
1212
steps:
1313
# Checkout with fetch-depth=0 in order to fetch (all) tags.
1414
# The Makefile runs git commands to pass tag info to the apiage script.
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
1616
with:
1717
fetch-depth: 0
1818
- name: Run makefile
1919
run: make api-report-issuetemplate RESULTS_DIR=_results
2020
- name: Archive test results
21-
uses: actions/upload-artifact@v4
21+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
2222
with:
2323
name: "go-ceph-api-updates"
2424
path: |
2525
_results/
2626
retention-days: 30
2727
if: "!cancelled()"
28-
- name: File Issue
29-
uses: JasonEtco/create-an-issue@v2
30-
env:
31-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32-
with:
33-
filename: _results/issue.md
34-
update_existing: true
28+
#### Disabled action ####
29+
# - name: File Issue
30+
# uses: JasonEtco/create-an-issue@v2
31+
# env:
32+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33+
# with:
34+
# filename: _results/issue.md
35+
# update_existing: true
36+
- name: Please file an issue
37+
run: echo "Dear Human, Please file an issue with the following template"; cat _results/issue.md

0 commit comments

Comments
 (0)