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 ab8fcc5 commit 4f8b591Copy full SHA for 4f8b591
.github/workflows/sync.yml
@@ -44,6 +44,7 @@ jobs:
44
uses: actions/checkout@v4
45
with:
46
repository: flexcompute/flex
47
+ token: ${{ secrets.GH_PAT }}
48
path: flex
49
ref: ${{ env.TARGET_BRANCH }}
50
@@ -63,9 +64,11 @@ jobs:
63
64
- name: Commit change to target repo
65
shell: bash
66
working-directory: ${{ github.workspace }}/flex
67
+ env:
68
+ GH_TOKEN: ${{ secrets.GH_PAT }}
69
run: |
70
git config --global user.email "[email protected]"
71
git config --global user.name "github_auto"
72
git add frontend/flexcompute.com/
73
git diff-index --quiet HEAD || git commit -m "sync(): sync from tidy3d-faq"
- git push
74
+ git push
0 commit comments