diff --git a/github-actions/templates/greetings.yml b/.github/workflows/greetings.yml similarity index 84% rename from github-actions/templates/greetings.yml rename to .github/workflows/greetings.yml index 996da6bbd..bb4722533 100644 --- a/github-actions/templates/greetings.yml +++ b/.github/workflows/greetings.yml @@ -1,6 +1,6 @@ name: Greetings -on: [pull_request_target, issues] +on: [push, issues] jobs: greeting: @@ -10,7 +10,7 @@ jobs: pull-requests: write steps: # https://github.com/actions/first-interaction - - uses: actions/first-interaction@v1 + - uses: actions/first-interaction@v1.3.0 with: repo-token: ${{ secrets.GITHUB_TOKEN }} issue-message: "Message that will be displayed on users' first issue" diff --git a/.github/workflows/schedule.yml b/.github/workflows/schedule.yml new file mode 100644 index 000000000..c27a3f360 --- /dev/null +++ b/.github/workflows/schedule.yml @@ -0,0 +1,12 @@ +name: Print Time Every Minute + +on: + schedule: + - cron: '* * * * *' + +jobs: + print-time: + runs-on: ubuntu-latest + steps: + - name: Print current time + run: date \ No newline at end of file diff --git a/.github/workflows/custom-action.yml b/github-actions/templates/custom-action.yml similarity index 100% rename from .github/workflows/custom-action.yml rename to github-actions/templates/custom-action.yml diff --git a/github-actions/templates/greetings copy.yml b/github-actions/templates/greetings copy.yml new file mode 100644 index 000000000..46774343e --- /dev/null +++ b/github-actions/templates/greetings copy.yml @@ -0,0 +1,16 @@ +name: Greetings + +on: [pull_request_target, issues] + +jobs: + greeting: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: "Message that will be displayed on users' first issue" + pr-message: "Message that will be displayed on users' first pull request"