mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
20 lines
491 B
YAML
20 lines
491 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
rebuild-pages:
|
|
if: github.repository == 'irssi/irssi'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/github-script@v6
|
|
with:
|
|
github-token: ${{ secrets.PAT_TOKEN }}
|
|
script: |
|
|
await github.rest.actions.createWorkflowDispatch({
|
|
owner: context.repo.owner,
|
|
repo: 'irssi.github.io',
|
|
workflow_id: 'pages.yml',
|
|
ref: 'main'
|
|
}) |