; env #8
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
name: Amazing Workflow | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
environment: production | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Show Pipeline Details | |
run: | | |
echo "Pull Request Title" | |
echo ${{ github.event.pull_request.title }} | |
echo "_____" | |
echo "Commit Message" | |
echo ${{ github.event.head_commit.message }} | |
echo "_____" | |
- name: Docker | |
run: | | |
echo "Execute Docker pull" | |
docker pull ubuntu:18.04 |