We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 786ed92 commit c87a6f7Copy full SHA for c87a6f7
2 files changed
.github/workflows/schedule.yml
@@ -0,0 +1,10 @@
1
+on:
2
+ schedule:
3
+ - cron: '*/5 * * * *'
4
+
5
+jobs:
6
+ hello_world:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Echo current time
10
+ run: echo "The current server time is $(date)"
github-actions/templates/greetings copy.yml
@@ -0,0 +1,16 @@
+name: Greetings
+on: [pull_request_target, issues]
+ greeting:
+ permissions:
+ issues: write
+ pull-requests: write
11
12
+ - uses: actions/first-interaction@v1
13
+ with:
14
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
15
+ issue-message: "Message that will be displayed on users' first issue"
16
+ pr-message: "Message that will be displayed on users' first pull request"
0 commit comments