-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c85aabb
commit 657e34b
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: sleepy cats 😴 | ||
# on key is trigger when pull request is opened or repoened | ||
on: | ||
pull_request: | ||
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request | ||
types: | ||
- opened | ||
- reopened | ||
|
||
# defining what is going to run when the action is triggered | ||
jobs: | ||
sleepCatJob: | ||
# what shows up when it is triggered | ||
name: A fablous cat to cheer up on PR | ||
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories | ||
runs-on: ubuntu-latest | ||
steps: | ||
-uses: ruairidhwm/[email protected] | ||
with: | ||
# key GITHUB_TOKEN:, expression ${{}}, context scerets.GITHUB_TOKEN - alive for duration of workflow | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |