chore(deps): update actions/upload-artifact action to v4 #6
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: TODOs on PRs | |
# only for branches other than main | |
on: | |
push: | |
branches: | |
- "**" | |
- "!main" | |
pull_request: | |
branches: | |
- "**" | |
- "!main" | |
jobs: | |
dry-run: | |
# this can be changed to `self-hosted` to move to self-hosted | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Run tdg-github-action | |
uses: ribtoks/tdg-github-action@v0.4.5-beta | |
with: | |
TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
REPO: ${{ github.repository }} | |
SHA: ${{ github.sha }} | |
REF: ${{ github.ref }} | |
DRY_RUN: true |