Skip to content

Commit ea800ac

Browse files
committed
Add more paths to synclist
1 parent 62c0d57 commit ea800ac

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

.github/workflows/language-reference.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ jobs:
7474
pull-requests: write # it creates a pr
7575
env:
7676
GITHUB_TOKEN: ${{ github.token }}
77+
BRANCH_NAME: reference-merge-${{ github.event.head_commit.id }}
7778
runs-on: ubuntu-latest
7879
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
7980
steps:
@@ -97,19 +98,18 @@ jobs:
9798
9899
- name: Push
99100
run: |
100-
BranchName=reference-merge-${{ github.event.head_commit.id }}
101101
Url=${{ github.server_url }}
102102
Server=${Url#*://}
103103
Scheme=${Url%%://*}
104104
Remote=${Scheme}://${{ github.token }}@${Server}/${{ github.repository }}
105-
git push $Remote HEAD:refs/heads/$BranchName
105+
git push $Remote HEAD:refs/heads/$BRANCH_NAME
106106
107-
- name: Format the message and create a pull request
107+
- name: Prepare the message and create a pull request
108108
run: |
109109
<.github/workflows/reference-sync/pr-template.md sed -E "
110110
s^<<commit-id>>^${{ github.event.head_commit.id }}^g;
111111
s^<<author>>^${{ github.event.head_commit.author.username }}^g;
112112
s^<<repo-url>>^${Url}/${{ github.repository }}^g;
113-
s^<<branch-name>>^${BranchName}^g;
113+
s^<<branch-name>>^${BRANCH_NAME}^g;
114114
" \
115-
| hub pull-request -f -b main -h ${BranchName} -a ${{ github.event.head_commit.author.username }} -l area:documentation -F -
115+
| hub pull-request -f -b main -h ${BRANCH_NAME} -a ${{ github.event.head_commit.author.username }} -l area:documentation -F -
Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
.github/workflows
2+
changelogs
3+
docs
24
scaladoc
3-
docs
5+
scaladoc-js
6+
scaladoc-testcases
7+
scaladoc
8+
CONTRIBUTING.md
9+
MAINTENANCE.md

0 commit comments

Comments
 (0)