Skip to content

Commit

Permalink
removed old scripts and changed workflow to reusable workflows from m…
Browse files Browse the repository at this point in the history
…ui-public
  • Loading branch information
michelengelen committed Aug 29, 2024
1 parent cf441ec commit 6630b30
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 191 deletions.
35 changes: 0 additions & 35 deletions .github/workflows/issue-cleanup.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/new-issue-triage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: New issue triage
on:
issues:
types:
- opened

permissions: {}

jobs:
issue_cleanup:
name: Clean issue body
uses: mui/mui-public/.github/workflows/issues_body-cleanup.yml@master
permissions:
contents: read
issues: write
order_id_validation:
name: Validate order ID
needs: issue_cleanup
if: needs.issue_cleanup.outputs.orderId != ''
uses: mui/mui-public/.github/workflows/issues_order-id-validation.yml@master
with:
orderId: ${{ needs.issue_cleanup.outputs.orderId }}
permissions:
contents: read
issues: write
86 changes: 0 additions & 86 deletions scripts/githubActions/issueBodyCleanup.js

This file was deleted.

70 changes: 0 additions & 70 deletions scripts/githubActions/orderIdValidation.js

This file was deleted.

0 comments on commit 6630b30

Please sign in to comment.