202 検索結果 "runs-on"
カスタム イメージの使用
イメージ生成ランナーを作成したら、 snapshot キーワードを含むワークフローを実行してカスタム イメージを生成します。
イメージ生成用のワークフローを構成するには:
*
runs-on値を、作成したイメージ生成ランナーの名前に設定します。
次に示す文字列構文またはマッピング構文を使用して、 snapshot キーワードをジョブに追加します。
ワークフロー構成の再利用
$default-branch ]
pull_request:
branches: [ $default-branch ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Run a one-line
Xamarin アプリケーションのビルドとテスト
アプリケーションをビルドする方法の例です。
name: Build Xamarin.iOS app
on: [push]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v5
- name: Set default Xamarin
ワークフロー実行の REST API エンドポイント
erun
Response
応答の例
応答スキーマ
Status: 201
List workflow runs for a repository
Lists all workflow runs for a repository. You can use parameters to narrow the
チェック実行用 REST API エンドポイント
number of check runs with the same name to 1000. Once these check runs exceed 1000, GitHub will start to automatically delete older check runs.
Note
The Checks
REST API を使用してチェックを操作する
of the check runs created by a single GitHub App for a specific commit. Check suites summarize the status and conclusion of the check runs that a suite
SARIF ファイルを GitHub にアップロードする
Thursday at 15:45 UTC.
on:
push:
schedule:
- cron: '45 15 * * 4'
jobs:
build:
runs-on: ubuntu-latest
permissions:
# required for all workflows
security-events:
GradleでのJavaパッケージの公開
the Maven Central Repository
on:
release:
types: [created]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Java
uses:
ワークフローとアクションで式を評価する
つのジョブに設定し、それを出力と fromJSON を使って次のジョブに渡します。
YAML
name: build
on: push
jobs:
job1:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
コンテキスト
CI
on: push
jobs:
prod-check:
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
steps:
- run: echo "Deploying to production server on