.github-workflow Public Run some workflows for the organization. Python 2 1 0 0 Updated Apr 28, 2025 flutter_smart_dialog Public An elegant Flutter Dialog solution | 一种更优雅的 Flutter Dialog 解决方案 Dart 1,184 MIT 148 0 0 Updated Apr 27, 2025 flutter_wechat_camera_picker Pub...
This repo contains dev-keys and release-keys to sign Genymotion Desktop/Paas images. genymotion-saas-orbPublic genymotion-saas-github-actionPublic Set up your GitHub Actions workflow with a specific Genymotion Cloud SaaS gnirehtetPublic Gnirehtet provides reverse tethering for Android ...
concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: ${{ !contains(github.ref, 'release/')}} 在此示例中,多次推送到 release/1.2.3 分支不会取消正在进行的运行。 推送到另一个分支(例如 main)将取消正在进行的运行。 jobs.<job_id>.outputs 可以使用 jobs...
contains(github.event.head_commit.message, 'wip')"复制代码 同理,下面的workflow表示,只有git message中包含[build]才触发构建,否则跳过 代码语言:javascript 代码运行次数:0 运行 AI代码解释 jobs:format:runs-on:ubuntu-latestif:"contains(github.event.head_commit.message, '[build]')"复制代码 如何手动触发...
Accounts are locked when users downgrade their paid account to a free one, or if their paid plan is past due. main The default development branch. Whenever you create a Git repository, a branch named main is created, and becomes the active branch. In most cases, this contains the local ...
1. workflow 执行时,传入参数 在执行 workflow 时, 允许在 GitHub Actions 页面输入参数,控制执行逻辑。我们可以将人工处理的逻辑,在 GitHub Actions 参数化执行,适用于持续部署场景。 on: workflow_dispatch: inputs: logLevel: description: 'Log level' ...
uploaded Markdown content. Summaries automatically mask any secrets that might have been added accidentally. If a job summary contains sensitive information that must be deleted, you can delete the entire workflow run to remove all its job summaries. For more information seeDeleting a workflow run....
一个workflow 由很多个 job 组成,借助于 needs 参数,我们可以管理这些 job 之间的依赖,控制其执行流程。 代码语言:javascript 代码运行次数:0 运行 AI代码解释 on:pushjobs:job1:runs-on:ubuntu-lateststeps:-run:echo"job1"job2:runs-on:ubuntu-lateststeps:-run:sleep5needs:job1job3:runs-on:ubuntu-latest...
This is an example workflow that builds on all 3 OSes jobs: build: strategy: matrix: os: [macos-latest, ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - name: Check-out repository uses: actions/checkout@v4 - name: Setup Python uses: actions/setup-python@v5 with:...
contains(github.event.pull_request.labels.*.name, 'bug') with: project: 'https://github.com/srggrs/assign-one-project-github-action/projects/3' column_name: 'Labeled' 清理长时间无人跟进的 Issues 如果一个 Issue 长达 30 天没有更新,那么下面的 workflow 将会再等 5 天,然后将其关闭。