feat: adds lint-release-notes action #140
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: Update dependencies | |
concurrency: update-dependencies | |
on: | |
schedule: | |
# Every day at midnight | |
- cron: "0 0 * * *" | |
workflow_dispatch: | |
issue_comment: | |
types: | |
- edited | |
pull_request: | |
types: | |
- edited | |
jobs: | |
update-dependencies: | |
runs-on: ubuntu-latest | |
name: Update dependencies | |
# TODO(shakefu): Figure out what's supposed to happen here after @tagoro9 | |
# can explain wtf he was up to - remove the skip | |
if: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: ./ | |
with: | |
github-token: ${{ secrets.OPEN_TURO_GITHUB_TOKEN }} |