diff --git a/.github/actions/notify-slack-jobs-result/action.yml b/.github/actions/notify-slack-jobs-result/action.yml index ecaa7ed1726..7d9076e2413 100644 --- a/.github/actions/notify-slack-jobs-result/action.yml +++ b/.github/actions/notify-slack-jobs-result/action.yml @@ -2,13 +2,13 @@ name: Notify Slack Jobs Result description: Will send a notification in Slack for the result of a GitHub action run, typically for test results inputs: github_token: - description: "The GitHub token to use for authentication (usually ${{ github.token }})" + description: "The GitHub token to use for authentication (usually github.token)" required: true github_repository: - description: "The GitHub owner/repository to use for authentication (usually ${{ github.repository }}))" + description: "The GitHub owner/repository to use for authentication (usually github.repository))" required: true workflow_run_id: - description: "The workflow run ID to get the results from (usually ${{ github.run_id }})" + description: "The workflow run ID to get the results from (usually github.run_id)" required: true github_job_name_regex: description: "The regex to use to match 1..many job name(s) to collect results from. Should include a capture group named 'cap' for the part of the job name you want to display in the Slack message (e.g. ^Client Compatability Test (?.*?)$)"