mirror of
https://github.com/funkypenguin/geek-cookbook/
synced 2025-12-13 01:36:23 +00:00
14 lines
311 B
YAML
14 lines
311 B
YAML
name: 'PR Tasks Completed Check'
|
|
on:
|
|
pull_request:
|
|
types: [opened, edited]
|
|
|
|
jobs:
|
|
task-check:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
pull-requests: write
|
|
steps:
|
|
- uses: kentaro-m/task-completed-checker-action@v0.1.0
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}" |