Created
December 4, 2024 16:02
-
-
Save felddy/b176d8cafdc21bd95a9bc57ad0706011 to your computer and use it in GitHub Desktop.
Repo Tickle Action for use when GitHub Actions refuses to run
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: "Repo Tickle Action" | |
on: | |
push: | |
pull_request: | |
jobs: | |
tickle-the-repo: | |
name: "Tickling the Repo 🪶" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Start Tickle Session" | |
run: echo "Initiating repo tickle..." | |
- name: "Virtual Feather" | |
run: | | |
for i in {1..5}; do | |
echo "Tickle... 🪶" | |
sleep 1 | |
done | |
- name: "Tickle Complete" | |
run: echo "The repo has been sufficiently amused. 😂" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment