Gamerep #34
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: Taghunt | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install just | |
uses: extractions/setup-just@v2 | |
- name: Install ripgrep | |
run: sudo apt install -y ripgrep | |
- name: Tag Hunt | |
id: taghunt | |
run: | | |
set -x | |
which rg | |
rg --version | |
rg TODO src | |
cat <<EOF > $GITHUB_OUTPUT | |
stdout=$(just taghunt) | |
EOF | |
- name: Add PR Comment | |
uses: mshick/[email protected] | |
with: | |
message: | | |
${{ steps.taghunt.outputs.stdout }} |