Skip to content

Commit f3a799a

Browse files
Update Github Actions workflow files
1 parent 554b00c commit f3a799a

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

.github/workflows/generate-changelog.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: generate-changelog
2+
run-name: Generate changelog / ${{ github.event.head_commit.message }}
23

34
on:
45
push:

.github/workflows/generate-gh-pages.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: generate-gh-pages
2+
run-name: Generate gh-pages / ${{ github.event.head_commit.message }}
23

34
on:
45
push:

.github/workflows/publish-nightly.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: publish-nightly
2+
run-name: Publish nightly nupkg / ${{ github.event.head_commit.message }}
23

34
on:
45
push:
@@ -14,6 +15,11 @@ jobs:
1415
run: echo "DATE=$(date +'%Y%m%d')" >> $GITHUB_ENV
1516
- name: Pack
1617
run: ./build.cmd pack /p:VersionSuffix=nightly.$DATE.$GITHUB_RUN_NUMBER
18+
- name: Upload nupkg to artifacts
19+
uses: actions/upload-artifact@v3
20+
with:
21+
name: nupkgs
22+
path: "**/*.nupkg"
1723
- name: Publish nupkg
1824
env:
1925
MYGET_API_KEY: ${{ secrets.MYGET_API_KEY }}

.github/workflows/report-test-results.yaml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: report-test-results
2+
run-name: Report test results for '${{ github.event.workflow_run.head_branch }}' / ${{ github.event.workflow_run.display_title }}
23

34
on:
45
workflow_run:
@@ -11,12 +12,6 @@ jobs:
1112
runs-on: ubuntu-latest
1213
permissions: write-all
1314
steps:
14-
- name: Print info about the target workflow_run
15-
run : |
16-
echo "workflow_run: ${{ github.event.workflow_run }}"
17-
echo "head_sha: ${{ github.event.workflow_run.head_sha }}"
18-
echo "workflow_id: ${{ github.event.workflow_run.workflow_id }}"
19-
echo "head_branch: ${{ github.event.workflow_run.head_branch }}"
2015
- name: Download Artifacts
2116
uses: dawidd6/action-download-artifact@v2
2217
with:

.github/workflows/run-tests.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: run-tests
2+
run-name: Run tests / ${{ github.event.head_commit.message }}
23

34
on:
45
pull_request:
@@ -95,7 +96,7 @@ jobs:
9596
name: test-macos-trx
9697
path: "**/*.trx"
9798

98-
docs-spellcheck:
99+
spellcheck-docs:
99100
runs-on: ubuntu-latest
100101
steps:
101102
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)