Skip to content

Commit 80431a2

Browse files
Create StarCheck.yml
1 parent 1ffec7c commit 80431a2

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/StarCheck.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
name: Star validation
4+
5+
# Controls when the workflow will run
6+
on:
7+
pull_request_target:
8+
types:
9+
- opened
10+
- synchronize
11+
- reopened
12+
- edited
13+
schedule:
14+
- cron: "5 * * * *"
15+
16+
# Allows you to run this workflow manually from the Actions tab
17+
workflow_dispatch:
18+
19+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
20+
jobs:
21+
# This workflow checks if a user has starred a repository and takes actions
22+
starcheck:
23+
runs-on: ubuntu-latest
24+
25+
# Steps represent a sequence of tasks that will be executed as part of the job
26+
steps:
27+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
28+
- uses: actions/checkout@v2
29+
with:
30+
GITHUB_TOKEN: ${{ secrets.TOKEN }}
31+
message: "Please star this repository to motivate developers! :star:"

0 commit comments

Comments
 (0)