Skip to content

Instantly share code, notes, and snippets.

@felddy
Created December 4, 2024 16:02
Show Gist options
  • Save felddy/b176d8cafdc21bd95a9bc57ad0706011 to your computer and use it in GitHub Desktop.
Save felddy/b176d8cafdc21bd95a9bc57ad0706011 to your computer and use it in GitHub Desktop.
Repo Tickle Action for use when GitHub Actions refuses to run
---
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