Skip to content

Commit

Permalink
remove catalog check debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Henderson committed Apr 23, 2024
1 parent 78352bc commit a666dbf
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/starter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,26 +130,6 @@ jobs:
secrets:
token: ${{ secrets.APPROVE_README_PUSH }}

catalog_build_check:
needs: call-assign-from-json-workflow
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Rebuild Catalog check
id: vars
run: |
echo github.ref_name: ${{ github.ref_name}} | tee -a $GITHUB_STEP_SUMMARY
echo github.ref_name: ${{ github.event_name}} | tee -a $GITHUB_STEP_SUMMARY
echo needs.call-assign-from-json-workflow.outputs.update_catalog: ${{ needs.call-assign-from-json-workflow.outputs.update_catalog }} | tee -a $GITHUB_STEP_SUMMARY
if [[ "${{ github.ref_name }}" == "main" && "(${{ github.event_name }} == 'push' || ${{ github.event_name }} == 'workflow_dispatch')" ]]; then
echo "REBUILD_CATALOG=true" | tee -a "$GITHUB_OUTPUT" | tee -a $GITHUB_STEP_SUMMARY
else
echo "REBUILD_CATALOG=false" | tee -a "$GITHUB_OUTPUT" | tee -a $GITHUB_STEP_SUMMARY
fi
call-update-catalog-workflow:
needs: call-assign-from-json-workflow
if: needs.call-assign-from-json-workflow.outputs.update_catalog == 'true' && github.ref_name == 'main' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')
Expand Down

0 comments on commit a666dbf

Please sign in to comment.