From c3352569fe43f14f01092d3e544455e3155ef686 Mon Sep 17 00:00:00 2001 From: Damien Butler <81618731+DamienButler@users.noreply.github.com> Date: Mon, 6 Nov 2023 11:20:41 +0000 Subject: [PATCH 1/2] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 062957a..7f0fcc9 100644 --- a/README.md +++ b/README.md @@ -21,8 +21,7 @@ _Create a GitHub Action and use it in a workflow._ ## Step 5: Trigger the workflow -_You've now got a fully functioning workflow! :smile:_ :smile:_ - +_You've now got a fully functioning workflow! :smile:_ Your new action will run any time a pull request has been opened. **Seeing your _action_ in action**: The status of your action is shown in a pull request before you merge, look for **All checks have passed** when you try out the steps below. You can also view them from the **Actions** tab in your repository. From there, you will see all the actions that have run, and you can click on each action to view details and access log files. From dc20e9fbf791d63ee5d1ff7ff1ba86fb74273fca Mon Sep 17 00:00:00 2001 From: Damien Butler <81618731+DamienButler@users.noreply.github.com> Date: Mon, 6 Nov 2023 11:23:37 +0000 Subject: [PATCH 2/2] Update welcome.yml --- .github/workflows/welcome.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/welcome.yml b/.github/workflows/welcome.yml index 0c2fafa..8d313a8 100644 --- a/.github/workflows/welcome.yml +++ b/.github/workflows/welcome.yml @@ -8,8 +8,8 @@ jobs: build: name: Post welcome comment runs-on: ubuntu-latest - steps: - - run: gh pr comment $PR_URL --body "Welcome to the repository!" - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - PR_URL: ${{ github.event.pull_request.html_url }} + steps: + - run: gh pr comment $PR_URL --body "Welcome to the repository!" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + PR_URL: ${{ github.event.pull_request.html_url }}