Skip to content

Commit 7bcf974

Browse files
authored
Fix .taskcluster.yml file so git clone works (#181)
1 parent b5e9695 commit 7bcf974

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.taskcluster.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
version: 1
2+
reporting: checks-v1
23
policy:
34
pullRequests: public
45
tasks:
5-
- $if: '(tasks_for == "github-pull-request" && event["action"] in ["opened", "reopened", "synchronize"])'
6+
- $if: '(tasks_for == "github-pull-request" && event["action"] in ["opened", "reopened", "synchronize"])'
67
then:
78
taskId: {$eval: as_slugid("toc-test")}
89
created: {$fromNow: ''}
@@ -16,8 +17,8 @@ tasks:
1617
- /bin/bash
1718
- '-c'
1819
- >-
19-
git clone ${event.pull_request.head.repo.git_url} taskcluster-worker-runner &&
20-
cd taskcluster-worker-runner &&
20+
git clone ${event.pull_request.head.repo.clone_url} taskcluster-rfcs &&
21+
cd taskcluster-rfcs &&
2122
git config advice.detachedHead false &&
2223
git checkout ${event.pull_request.head.sha} &&
2324
python maketoc.py &&

0 commit comments

Comments
 (0)