18 lines
389 B
YAML
Executable File
18 lines
389 B
YAML
Executable File
name: PR update
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
autoupdate:
|
|
if: github.repository == 'volantis-x/hexo-theme-volantis'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: update all prs
|
|
uses: maxkomarychev/pr-updater-action@v1.0.1
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|