Created
November 12, 2019 17:47
-
-
Save igordcsouza/d109a7c94b281a9b6c3fe5f454b40c27 to your computer and use it in GitHub Desktop.
This file contains hidden or 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: Review Apps | |
on: | |
pull_request: | |
types: [assigned, opened, synchronize, reopened, closed] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Run a one-line script | |
run: echo Hello, world! | |
- name: Run a multi-line script | |
run: | | |
echo Add other actions to build, | |
echo test, and deploy your project. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment