2021-05-03 11:51:48 -05:00
|
|
|
name: issue-597
|
|
|
|
on: push
|
2022-02-25 12:39:50 -06:00
|
|
|
|
2021-05-03 11:51:48 -05:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
my_first_job:
|
2022-02-25 12:39:50 -06:00
|
|
|
|
2021-05-03 11:51:48 -05:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: My first false step
|
|
|
|
if: "endsWith('Should not', 'o1')"
|
|
|
|
uses: actions/checkout@v2.0.0
|
|
|
|
with:
|
|
|
|
ref: refs/pull/${{github.event.pull_request.number}}/merge
|
|
|
|
fetch-depth: 5
|
|
|
|
- name: My first true step
|
2022-02-25 12:39:50 -06:00
|
|
|
if: ${{endsWith('Hello world', 'ld')}}
|
2021-05-03 11:51:48 -05:00
|
|
|
uses: actions/hello-world-javascript-action@main
|
|
|
|
with:
|
|
|
|
who-to-greet: "Renst the Octocat"
|
|
|
|
- name: My second false step
|
|
|
|
if: "endsWith('Should not evaluate', 'o2')"
|
|
|
|
uses: actions/checkout@v2.0.0
|
|
|
|
with:
|
|
|
|
ref: refs/pull/${{github.event.pull_request.number}}/merge
|
|
|
|
fetch-depth: 5
|
|
|
|
- name: My third false step
|
|
|
|
if: ${{endsWith('Should not evaluate', 'o3')}}
|
|
|
|
uses: actions/checkout@v2.0.0
|
|
|
|
with:
|
|
|
|
ref: refs/pull/${{github.event.pull_request.number}}/merge
|
|
|
|
fetch-depth: 5
|