File tree 1 file changed +31
-0
lines changed
1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change
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:"
You can’t perform that action at this time.
0 commit comments