this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿ’š Update workflow files through npm scripts and submodules

refs/heads/main:refs/heads/main[remote rejected] (refusing to allow a GitHub App to create or update workflow `.github/workflows/publish.yml` without `workflows` permission)

No MATTER how much I use a PAT, fine grained or classic, set it on
checkout, both checkouts, the add-and-commit github_token action, i
tried everything this is so fucking dumb

+1 -13
-13
.github/workflows/publish.yml
··· 27 27 steps: 28 28 - name: Checkout repository 29 29 uses: actions/checkout@v4 30 - with: 31 - token: ${{ secrets.WORKFLOW_SYNC_PAT }} 32 30 33 31 - name: Checkout source code repository 34 32 uses: actions/checkout@v4 ··· 72 70 run: echo Deployed to https://beta.$LANG.gwen.works 73 71 env: 74 72 LANG: ${{ github.event.client_payload.lang }} 75 - 76 - - name: Update workflow file from source repository 77 - run: cp source/.github/workflows/publish.yml .github/workflows/publish.yml 78 - 79 - - name: Commit changes to the workflow file from the source repository 80 - uses: EndBug/add-and-commit@v9 81 - with: 82 - add: .github/workflows/publish.yml 83 - default_author: github_actions 84 - message: ๐Ÿ‘ทโ€โ™€๏ธ Update workflow definition 85 - push: origin main --set-upstream
+1
package.json
··· 8 8 "preview": "astro preview", 9 9 "astro": "astro", 10 10 "format": "prettier --write .", 11 + "syncworkflow": "cp .github/workflows/publish.yml portfolio-build-en/.github/workflows; cd portfolio-build-en; git add .github; git commit -m 'Update workflow'; git push; cd ..; cp .github/workflows/publish.yml portfolio-build-fr/.github/workflows; cd portfolio-build-fr; git add .github; git commit -m 'Update workflow'; git push", 11 12 "database": "ortfodb --config ./ortfodb.yaml --scattered build works.json" 12 13 }, 13 14 "dependencies": {