From 838ca4b3943bc7a8ba5a8c54528d2ce4113bf6e7 Mon Sep 17 00:00:00 2001 From: PSJ <51746608+thispsj@users.noreply.github.com> Date: Tue, 3 May 2022 09:37:39 +0530 Subject: [PATCH] Quickfix --- .../scheduling-issue-creation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/actions/managing-issues-and-pull-requests/scheduling-issue-creation.md b/content/actions/managing-issues-and-pull-requests/scheduling-issue-creation.md index 7896bb0a36..e13d08c07c 100644 --- a/content/actions/managing-issues-and-pull-requests/scheduling-issue-creation.md +++ b/content/actions/managing-issues-and-pull-requests/scheduling-issue-creation.md @@ -29,8 +29,8 @@ In the tutorial, you will first make a workflow file that uses the [`imjohnbo/is 2. {% data reusables.actions.make-workflow-file %} 3. Copy the following YAML contents into your workflow file. - ```yaml{:copy} -{% indented_data_reference reusables.actions.actions-not-certified-by-github-comment spaces=4 %} +```yaml{:copy} +{% data reusables.actions.actions-not-certified-by-github-comment %} {% data reusables.actions.actions-use-sha-pinning-comment %} name: Weekly Team Sync @@ -67,7 +67,7 @@ In the tutorial, you will first make a workflow file that uses the [`imjohnbo/is close-previous: false env: GITHUB_TOKEN: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %} - ``` +``` 4. Customize the parameters in your workflow file: - Change the value for `on.schedule` to dictate when you want this workflow to run. In the example above, the workflow will run every Monday at 7:20 UTC. For more information about scheduled workflows, see "[Scheduled events](/actions/reference/events-that-trigger-workflows#scheduled-events)."