Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Nov 15, 2024
1 parent 84f165c commit 6c2d27a
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
name: Ecosystem test

on:
push:
pull_request:
workflow_dispatch:
workflow_call:
inputs:
repos_file:
description: 'Path to the file containing the list of repository names'
type: string
required: true
default: '.github/repos.txt'
package_name:
description: 'Name of the package to update'
default: 'intl' ##DO-NOT-SUBMIT
# required: true
type: string
required: true
new_version:
description: 'New version of the package'
default: 0.20.0
# required: true
type: string
required: true
level:
description: 'What to check, solve, analyze, or test'
type: string
default: test

jobs:
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/ecosystem_test_internal.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Ecosystem test

on:
push:
pull_request:
workflow_dispatch:

jobs:
test_ecosystem:
uses: ./.github/workflows/ecosystem_test.yaml
with:
repos_file: .github/repos.txt
package_name: intl
new_version: 0.20.0
level: test

0 comments on commit 6c2d27a

Please sign in to comment.