diff --git a/.github/workflows/check-labels.yml b/.github/workflows/check-labels.yml index ac2ac54f5..9d848ab48 100644 --- a/.github/workflows/check-labels.yml +++ b/.github/workflows/check-labels.yml @@ -8,10 +8,13 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + with: + fetch-depth: 0 # Fetch all history for all branches - name: Detect Changes id: detect run: | + git fetch origin main CHANGED_FILES=$(git diff --name-only origin/main...HEAD) echo "Changed files: $CHANGED_FILES" if echo "$CHANGED_FILES" | grep -q '^packages/std/'; then diff --git a/.github/workflows/crate-deploy.yml b/.github/workflows/publish-crates.yml similarity index 97% rename from .github/workflows/crate-deploy.yml rename to .github/workflows/publish-crates.yml index 451a1712d..3a8a391ff 100644 --- a/.github/workflows/crate-deploy.yml +++ b/.github/workflows/publish-crates.yml @@ -1,4 +1,4 @@ -name: Deploy Crates +name: Publish Crates on: release: