Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/pr_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
- synchronize
branches:
- main
- test-update-artifacts

jobs:
create-package:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/push_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- test-update-artifacts

jobs:
create-package:
Expand Down
14 changes: 11 additions & 3 deletions .github/workflows/update_artifacts_list.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,25 @@ on:
- completed
workflows:
- 'Creating plugin package in main branch'
# Add these for testing
push:
branches:
- test-update-artifacts
workflow_dispatch: # Allows manual triggering

jobs:
comment:
if: github.event.workflow_run.conclusion == 'success'
if: |
github.event_name == 'workflow_dispatch' ||
github.event_name == 'push' ||
(github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success')
runs-on: ubuntu-latest
steps:
- name: Download workflow artifact
uses: dawidd6/action-download-artifact@v2.11.0
uses: dawidd6/action-download-artifact@v11
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
workflow: peek_icons.yml
workflow: ${{ github.event.workflow_run.workflow_id }}
run_id: ${{ github.event.workflow_run.id }}

- name: Read the zip file name
Expand Down
Loading