Check depdendecies' update #1359
This file contains hidden or 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: Check depdendecies' update | |
| on: | |
| schedule: | |
| - cron: "0 0 * * *" | |
| workflow_dispatch: | |
| jobs: | |
| outdater: | |
| runs-on: ubuntu-latest | |
| name: Dependencies outdater | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Dependencies Outdater | |
| uses: action-runner/dependencies-outdater@master | |
| with: | |
| access_token: ${{ secrets.RELEASE_TOKEN }} | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v4 | |
| with: | |
| stale-issue-message: 'Message to comment on stale issues. If none provided, will not mark issues stale' | |
| stale-pr-message: 'Message to comment on stale PRs. If none provided, will not mark PRs stale' | |
| days-before-stale: 7 | |
| days-before-close: 7 |