Ensure docker image pushed to Docker Hub before README.md #59
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# Action Repo: https://github.com/actions/starter-workflows | |
name: Greetings | |
# yamllint disable-line rule:truthy | |
on: [pull_request, 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: > | |
Thank you for creating your first Issue in this repository. | |
We will review it and get back to you shortly. | |
pr-message: > | |
Thank you for submitting your first Pull Request to this repository. | |
We will review it and get back to you shortly. | |
name: Greetings |