We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c37e200 commit b34e008Copy full SHA for b34e008
.github/workflows/sync-dart-sass-version.yaml
@@ -6,7 +6,7 @@ on:
6
- 'aqua.yaml'
7
8
jobs:
9
- lint:
+ run:
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v4
@@ -25,7 +25,12 @@ jobs:
25
- name: 'Try sync'
26
run: |
27
uv run tools/sync-current-sass.py
28
- - uses: 'actions-js/push@v1'
+ - name: 'Pre push and commit'
29
+ run: |
30
+ git fetch
31
+ git checkout origin/${{ github.event.pull_request.head.ref }} -b ${{ github.event.pull_request.head.ref }}
32
+ - uses: 'actions-js/push@v1.5'
33
with:
34
+ github_token: ${{ secrets.GITHUB_TOKEN }}
35
message: 'feat: Sync version text of Dart Sass'
- branch: ${{ github.ref_name }}
36
+ branch: ${{ github.event.pull_request.head.ref }}
0 commit comments