Skip to content

Commit

Permalink
Added repository rebuild workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Elanis committed Apr 30, 2022
1 parent a941ff8 commit bafe9a2
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/repo-rebuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Trigger L-U-M-E-N repository rebuild

on:
release:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: L-U-M-E-N repository rebuild
uses: actions/github-script@v5
with:
github-token: ${{ secrets.REPO_REBUILD_PAT }}
script: |
await github.rest.actions.createWorkflowDispatch({
owner: 'L-U-M-E-N',
repo: 'lumen-repository',
workflow_id: 23424596,
ref: 'main'
});

0 comments on commit bafe9a2

Please sign in to comment.