diff --git a/.github/workflows/broken-links.yml b/.github/workflows/broken-links.yml index daf7d9b2a6f..f5fdbfe684f 100644 --- a/.github/workflows/broken-links.yml +++ b/.github/workflows/broken-links.yml @@ -13,7 +13,7 @@ on: jobs: check: - name: Check + name: Check Broken Links runs-on: [plutus-ci, self-hosted] steps: - name: Checkout diff --git a/.github/workflows/changelog-label.yml b/.github/workflows/changelog-label.yml index c1aeed262ce..f8a0a35a888 100644 --- a/.github/workflows/changelog-label.yml +++ b/.github/workflows/changelog-label.yml @@ -13,7 +13,7 @@ on: jobs: check: - name: Check + name: Check Changelog Label runs-on: [ubuntu-latest] permissions: issues: write diff --git a/.github/workflows/code-coverage-report.yml b/.github/workflows/code-coverage-report.yml index faf0be7f628..18e94f4dc75 100644 --- a/.github/workflows/code-coverage-report.yml +++ b/.github/workflows/code-coverage-report.yml @@ -11,7 +11,7 @@ on: jobs: deploy: - name: Deploy + name: Build & Deploy Code Coverage Report runs-on: [self-hosted, plutus-ci] permissions: contents: write diff --git a/.github/workflows/compare-golden-budgets.yaml b/.github/workflows/compare-golden-budgets.yaml index c178d49b8ca..f312f87dd2e 100644 --- a/.github/workflows/compare-golden-budgets.yaml +++ b/.github/workflows/compare-golden-budgets.yaml @@ -7,6 +7,8 @@ on: jobs: run-script: + name: Compare Golden Budgets + runs-on: ubuntu-latest permissions: diff --git a/.github/workflows/cost-model-benchmark.yml b/.github/workflows/cost-model-benchmark.yml index b95787ebb12..8d0936812e6 100644 --- a/.github/workflows/cost-model-benchmark.yml +++ b/.github/workflows/cost-model-benchmark.yml @@ -15,7 +15,7 @@ on: jobs: run: - name: Run + name: Run Cost Model Benchmark runs-on: [self-hosted, plutus-benchmark] timeout-minutes: 1800 # (30 hours) These benchmarks take over 10 hours to run. steps: diff --git a/.github/workflows/docusaurus-site.yml b/.github/workflows/docusaurus-site.yml index c13c5138d1e..01c753c46e4 100644 --- a/.github/workflows/docusaurus-site.yml +++ b/.github/workflows/docusaurus-site.yml @@ -21,7 +21,7 @@ on: jobs: run: - name: Run + name: Build & Deploy Docusaurus Site runs-on: [self-hosted, plutus-ci] permissions: contents: write diff --git a/.github/workflows/haddock-site.yml b/.github/workflows/haddock-site.yml index e113d853ca8..fe82c994f7e 100644 --- a/.github/workflows/haddock-site.yml +++ b/.github/workflows/haddock-site.yml @@ -60,7 +60,7 @@ on: jobs: deploy: - name: Deploy + name: Build & Deploy Haddock Site runs-on: [self-hosted, plutus-ci] permissions: contents: write diff --git a/.github/workflows/longitudinal-benchmark.yml b/.github/workflows/longitudinal-benchmark.yml index d84101ec9c3..6d36011e42e 100644 --- a/.github/workflows/longitudinal-benchmark.yml +++ b/.github/workflows/longitudinal-benchmark.yml @@ -25,7 +25,7 @@ permissions: jobs: run: - name: Run + name: Run Longitudinal Benchmark runs-on: [self-hosted, plutus-benchmark] steps: - name: Checkout diff --git a/.github/workflows/manual-benchmark.yml b/.github/workflows/manual-benchmark.yml index a825ef326f6..490dcab4c52 100644 --- a/.github/workflows/manual-benchmark.yml +++ b/.github/workflows/manual-benchmark.yml @@ -16,7 +16,7 @@ on: jobs: run: - name: Run + name: Run Manual Benchmark runs-on: [self-hosted, plutus-benchmark] permissions: pull-requests: write diff --git a/.github/workflows/metatheory-site.yml b/.github/workflows/metatheory-site.yml index a9f0741fd31..5372ef1ed70 100644 --- a/.github/workflows/metatheory-site.yml +++ b/.github/workflows/metatheory-site.yml @@ -45,7 +45,7 @@ on: jobs: deploy: - name: Deploy + name: Build & Deploy Metatheory Site runs-on: [self-hosted, plutus-ci] permissions: contents: write diff --git a/.github/workflows/nightly-testsuite.yml b/.github/workflows/nightly-testsuite.yml index ead933f702c..8bd21344562 100644 --- a/.github/workflows/nightly-testsuite.yml +++ b/.github/workflows/nightly-testsuite.yml @@ -21,7 +21,7 @@ env: jobs: run: - name: Run + name: Run Nightly Testsuite runs-on: [self-hosted, plutus-ci] steps: - name: Checkout diff --git a/.github/workflows/papers-and-specs.yml b/.github/workflows/papers-and-specs.yml index 458139ad932..79c141f10ef 100644 --- a/.github/workflows/papers-and-specs.yml +++ b/.github/workflows/papers-and-specs.yml @@ -20,7 +20,7 @@ on: jobs: deploy: - name: Deploy + name: Build & Publish Papers & Specs runs-on: [self-hosted, plutus-ci] permissions: contents: write diff --git a/.github/workflows/slack-message-broker.yml b/.github/workflows/slack-message-broker.yml index 326167feee4..f1541fa2878 100644 --- a/.github/workflows/slack-message-broker.yml +++ b/.github/workflows/slack-message-broker.yml @@ -26,6 +26,7 @@ on: jobs: Send: + name: Send Slack Message runs-on: [ubuntu-latest] steps: - name: Prepare Slack Message diff --git a/.github/workflows/sprint-issues-rollover.yml b/.github/workflows/sprint-issues-rollover.yml deleted file mode 100644 index 5c2e5cec79d..00000000000 --- a/.github/workflows/sprint-issues-rollover.yml +++ /dev/null @@ -1,27 +0,0 @@ -# This workflow moves issues and pull requests to the next sprint iteration of -# the Plutus Backlog project. In practice, all open backlog items in the Current -# Iteration (the one that is still in progress) will be moved to the Next -# Iteration (the one that will start next). -# This workflow must be run manually from the GitHub Actions page. -# In practice you want to run this on the last day of the current sprint, the -# day before the next sprint begins. - -name: "🛼 Sprint Issues Rollover" - -on: - workflow_dispatch: - -jobs: - Run: - runs-on: ubuntu-latest - - steps: - - uses: blombard/move-to-next-iteration@master - with: - owner: IntersectMBO - number: 18 # Find this number by looking at the project's page URL - token: ${{ secrets.PLUTUS_BACKLOG_AUTOMATION }} # Needs project write permissions - iteration-field: Sprint - iteration: current - new-iteration: next - excluded-statuses: ❌ - won't do,🚀 - done \ No newline at end of file diff --git a/.github/workflows/triage-label.yml b/.github/workflows/triage-label.yml index 08f1673367c..3b772290ba9 100644 --- a/.github/workflows/triage-label.yml +++ b/.github/workflows/triage-label.yml @@ -9,7 +9,7 @@ on: jobs: add: - name: Add + name: Add Triage Label runs-on: [ubuntu-latest] permissions: issues: write