Bump swiper from 11.0.4 to 11.0.6 in /src/main/vue #354
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: PR tests | |
on: | |
pull_request_target: | |
branches: | |
- main | |
- develop | |
jobs: | |
approve: | |
if: ${{ github.actor != 'dependabot[bot]' && github.event.pull_request.user.login != 'dependabot[bot]' }} | |
runs-on: ubuntu-latest | |
environment: | |
name: PR-env | |
steps: | |
- name: Approve | |
run: echo "Test run needs approval" | |
PR-tests: | |
needs: [approve] | |
if: always() | |
uses: PabloLec/StarryLines/.github/workflows/tests.yml@main | |
secrets: | |
MONGO_USER_TEST: ${{ secrets.MONGO_USER_TEST }} | |
MONGO_SECRET_TEST: ${{ secrets.MONGO_SECRET_TEST }} | |
MONGO_CLUSTER: ${{ secrets.MONGO_CLUSTER }} | |
MONGO_DATABASE_TEST: ${{ secrets.MONGO_DATABASE_TEST }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
automerge-dependabot: | |
runs-on: ubuntu-latest | |
needs: PR-tests | |
if: github.actor == 'dependabot[bot]' && github.event.pull_request.user.login == 'dependabot[bot]' && github.event.pull_request.base.ref == 'develop' | |
steps: | |
- name: Enable auto-merge for Dependabot PRs | |
run: gh pr merge --auto --merge "$PR_URL" | |
env: | |
PR_URL: ${{ github.event.pull_request.html_url }} | |
GH_TOKEN: ${{ secrets.DEPENDABOT_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.DEPENDABOT_TOKEN }} |