Unverified Commit 62d69996 authored by Xilai Zhang's avatar Xilai Zhang Committed by GitHub

[github actions] change minimal example workflow to be manually dispatched (#140435)

This would allow easier testing of the minimal example.

Might need Github Admin power to trigger the manual dispatches.
parent ea5b9728
...@@ -5,9 +5,7 @@ ...@@ -5,9 +5,7 @@
name: Minimal workflow to test github action token name: Minimal workflow to test github action token
on: on:
pull_request: workflow_dispatch
branches: master
types: [labeled]
permissions: write-all permissions: write-all
...@@ -15,9 +13,6 @@ jobs: ...@@ -15,9 +13,6 @@ jobs:
minimal_token_test: minimal_token_test:
name: minimal_token_test name: minimal_token_test
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: |
(github.event.label.name == format('cp{0} beta', ':') || github.event.label.name == format('cp{0} stable', ':')) &&
(github.event.pull_request.merged == true)
steps: steps:
- name: Checkout Flutter Repo - name: Checkout Flutter Repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment