Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,5 @@ jobs:
name: A job to say hello
steps:
- uses: actions/checkout@v2
- name: Hello world action step
id: hello
uses: ./.github/actions/hello-docker
with:
who-to-greet: 'Mona the Octocat'
access-token: '${{ secrets.ISSUE_TEST_TOKEN }}'
exclude-workflow-files: 'performance.yml performance-integration-tests.yml'
# Use the output from the `hello` step
- name: Get the output time
run: echo "The time was ${{ steps.hello.outputs.time }}"
run: echo "The time was "
10 changes: 8 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: test_issue_generation

on: [pull_request]
on: [pull_request, push]

jobs:
get_link:
Expand Down Expand Up @@ -33,8 +33,14 @@ jobs:
with:
name: job_log_link
path: id_artifact.txt
- name: run after each pr
if: github.event_name == 'pull_request'
run: |
echo "the branch is here."
echo "${{ github.head_ref }}"
echo "see if it works."
- name: run after merge
if: github.action == 'closed' && github.event.pull_request.merged == true
if: github.event_name == 'push'
run: |
echo "the branch is here."
echo "${{ github.head_ref }}"
Expand Down