Updates COOKIEPATH
and SITECOOKIEPATH
values to /
in `applicati…
#49
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sync default to main | |
on: | |
push: | |
branches: | |
- 'default' | |
permissions: | |
contents: write | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Sync default branch to main | |
run: | | |
git config user.name "Pantheon Automation" | |
git config user.email "[email protected]" | |
git checkout main | |
git merge --no-edit origin/default | |
git push origin main |