Add job name to be required by golangci-lint action to fix metrics (#… #52996
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: 'SigScanner Check' | |
on: | |
merge_group: | |
push: | |
jobs: | |
sigscanner-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "SigScanner checking ${{ github.sha }} by ${{ github.actor }}" | |
env: | |
API_TOKEN: ${{ secrets.SIGSCANNER_API_TOKEN }} | |
API_URL: ${{ secrets.SIGSCANNER_API_URL }} | |
run: | | |
echo "🔎 Checking commit ${{ github.sha }} by ${{ github.actor }} in ${{ github.repository }} - ${{ github.event_name }}" | |
CODE=`curl --write-out '%{http_code}' -X POST -H "Content-Type: application/json" -H "Authorization: $API_TOKEN" --silent --output /dev/null --url "$API_URL" --data '{"commit":"${{ github.sha }}","repository":"${{ github.repository }}","author":"${{ github.actor }}"}'` | |
echo "Received $CODE" | |
if [[ "$CODE" == "200" ]]; then | |
echo "✅ Commit is verified" | |
exit 0 | |
else | |
echo "❌ Commit is NOT verified" | |
exit 1 | |
fi | |
- name: Collect Metrics | |
if: always() | |
id: collect-gha-metrics | |
uses: smartcontractkit/push-gha-metrics-action@dea9b546553cb4ca936607c2267a09c004e4ab3f # v3.0.0 | |
with: | |
id: sigscanner | |
org-id: ${{ secrets.GRAFANA_INTERNAL_TENANT_ID }} | |
basic-auth: ${{ secrets.GRAFANA_INTERNAL_BASIC_AUTH }} | |
hostname: ${{ secrets.GRAFANA_INTERNAL_HOST }} | |
this-job-name: sigscanner-check | |
continue-on-error: true |