diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 000000000..ef29b5620 --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,16 @@ +name: Greetings + +on: push + +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" diff --git a/.github/workflows/schedule.yml b/.github/workflows/schedule.yml new file mode 100644 index 000000000..0be248da6 --- /dev/null +++ b/.github/workflows/schedule.yml @@ -0,0 +1,11 @@ +name: Schedule +on: + schedule: + - cron: '*/5 * * * *' + +jobs: + Hello_World: + runs-on: ubuntu-latest + steps: + - name: print date + run: echo "todays date is $(date)"