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 }} 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.