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 0cd1d38 commit 3472b5aCopy full SHA for 3472b5a
.github/workflows/tests.yml
@@ -33,6 +33,19 @@ jobs:
33
- name: Execute tests
34
run: vendor/bin/phpunit
35
36
+ dependabot:
37
+ needs: [tests]
38
+ permissions:
39
+ pull-requests: write
40
+ contents: write
41
+ uses: driesvints/github-workflows/.github/workflows/dependabot.yml@main
42
+ secrets:
43
+ gh_token: ${{ secrets.GITHUB_TOKEN }}
44
+
45
+ deploy:
46
47
+ runs-on: ubuntu-latest
48
+ steps:
49
- name: Deploy
- if: github.ref_name == 'main'
50
+ if: github.repository == 'laravelio/paste.laravel.io' && github.ref_name == 'main'
51
run: curl ${{ secrets.ENVOYER_HOOK }}?sha=${{ github.sha }}
0 commit comments