1
0
مراية لـ https://github.com/postalserver/postal.git تم المزامنة 2025-12-01 05:43:04 +00:00

chore(github-actions): don't run for dependabot or release-please PRs and fetch whole repo

هذا الالتزام موجود في:
Adam Cooke
2024-03-19 16:54:18 +00:00
الأصل 64bc7dcf7c
التزام adaf2b0750

عرض الملف

@@ -63,9 +63,14 @@ jobs:
name: Release (branch) name: Release (branch)
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [build] needs: [build]
if: startsWith(github.ref, 'refs/heads/') if: >-
startsWith(github.ref, 'refs/heads/') &&
startsWith(github.ref, 'refs/heads/release-please-') != true &&
startsWith(github.ref, 'refs/heads/dependabot/') != true
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: docker/setup-qemu-action@v3 - uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v2 - uses: docker/setup-buildx-action@v2
- uses: docker/login-action@v2 - uses: docker/login-action@v2