chore: added workflow_dispatch event to stale branches workflow #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Find and Clean Stale Branches | |
on: | |
workflow_dispatch: {} | |
push: | |
branches: | |
- stale-branch-poc | |
jobs: | |
find-stale-branches: | |
runs-on: ubuntu-latest | |
name: Find Stale Branches | |
steps: | |
- name: Run O11y Stale Branch POC | |
id: stale-branch-poc | |
uses: liatrio/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-branch-age: '30 days' |