Fasten is an open-source, self-hosted, personal/family electronic medical record aggregator, designed to integrate with 100,000's of insurances/hospitals/clinics - Workflow runs · fastenhealth/fasten-onprem
name: learn-github-actions on: [push] jobs: check-bats-version: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: node-version: '14' - run: npm install -g bats - run: bats -v workflow 工作流程是您添加到仓库的自动化过程。 工作流程由...
workflow_run Workflow2: name: First Workflow on: [push] jobs: build: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 - name: Build run: echo "Building the project..." WorkflowOne成功完成,但是工作流程两个从未运行。如果有人可以将我指向我出错的方向,我会...
All workflows Showing runs from all workflows 312,113 workflow runs Auto Start CI Auto Start CI#215813:Scheduled main May 25, 2025 23:096s Commit Queue Commit Queue#214442:Scheduled main May 25, 2025 23:091m 42s Auto Start CI Auto Start CI#215812:Scheduled ...
Returns workflow runs created within the given date-time range. For more information on the syntax, see "Understanding the search syntax." exclude_pull_requestsboolean If true pull requests are omitted from the response (empty array). Default: false HTTP response status codes Status codeDescription...
name: Build on: workflow_call: inputs: target: required: true type: string default: "" jobs: build: strategy: matrix: target: [dev, stage, prod] runs-on: ubuntu-latest steps: - name: inputs.target = ${{ inputs.target }} if: inputs.target run: echo "inputs.target = ${{ inpu...
name字段是 workflow 的名称。如果省略该字段,默认为当前 workflow 的文件名。name: GitHub Actions Testonon字段指定触发 workflow 的条件,通常是某些事件。on: push上面代码指定,push事件触发 workflow。 on字段也可以是事件的数组。on: [push, pull_request]上面代码指定,push事件或pull_request事件都可以触发 ...
--- name: Test on: workflow_run: workflows: - Preflight types: - completed jobs: test-job: name: Test Step runs-on: ubuntu-latest steps: - run: env 上下文包含有关触发工作流程的事件的信息。这包括该事件最初从/for触发的分支:main.。 可以使用GitHub提供的 master 动作来检查动作中的原始...
1.创建workflow 在项目根目录创建.github目录,然后在里面创建workflows子目录,子目录中创建docker-image.yml文件,文件内容如下 name:DockerImageCIon:workflow_dispatch:jobs:build:runs-on:ubuntu-lateststeps:-uses:actions/checkout@v2-name:SetupJDK1.8uses:actions/setup-java@v1with:java-version:1.8-name:Buildwi...
For more information on the syntax, see "Understanding the search syntax." exclude_pull_requests boolean If true pull requests are omitted from the response (empty array). Default: false check_suite_id integer Returns workflow runs with the check_suite_id that you specify. head_sha string ...