🔥 Remove zeit to be installed by default #155
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: trigger | |
on: | |
push: | |
branches: [sway] | |
env: | |
UPSTREAM_GIT: https://gitlab.manjaro.org/profiles-and-settings/iso-profiles.git | |
BASE_BRANCH: master | |
jobs: | |
trigger: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: checkout | |
uses: actions/checkout@v4 | |
with: | |
token: "${{ secrets.GITHUB_TOKEN }}" | |
fetch-depth: 0 | |
- | |
name: fetch upstream | |
run: | | |
git remote add upstream ${UPSTREAM_GIT} | |
git fetch upstream | |
- | |
name: rebase | |
run: | | |
git config --global user.name "Repo Update Bot" | |
git config --global user.email "[email protected]" | |
git pull --rebase upstream ${BASE_BRANCH} | |
git push --force-with-lease | |
- | |
uses: peter-evans/repository-dispatch@v3 | |
with: | |
token: ${{ secrets.DISPATCH_TOKEN }} | |
repository: manjaro-sway/manjaro-sway | |
event-type: iso_profile_update |