Skip to main content

202 検索結果 "runs-on"

GitHub Actions / 方法 / ランナーを管理する / より大きなランナー /

カスタム イメージの使用

イメージ生成ランナーを作成したら、 snapshot キーワードを含むワークフローを実行してカスタム イメージを生成します。 イメージ生成用のワークフローを構成するには: * runs-on値を、作成したイメージ生成ランナーの名前に設定します。 次に示す文字列構文またはマッピング構文を使用して、 snapshot キーワードをジョブに追加します。

GitHub Actions / リファレンス / ワークフローとアクション /

ワークフロー構成の再利用

$default-branch ] pull_request: branches: [ $default-branch ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v5 - name: Run a one-line

GitHub Actions / チュートリアル / コードのビルドとテスト /

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 / アクション /

ワークフロー実行の 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 / チェック /

チェック実行用 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 / Guides /

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

セキュリティとコードの品質 / コード スキャン / Code Scanning と統合する /

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:

GitHub Actions / チュートリアル / パッケージの公開 /

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:

GitHub Actions / リファレンス / ワークフローとアクション /

ワークフローとアクションで式を評価する

つのジョブに設定し、それを出力と fromJSON を使って次のジョブに渡します。 YAML name: build on: push jobs: job1: runs-on: ubuntu-latest outputs: matrix: ${{ steps.set-matrix.outputs.matrix }} steps:

GitHub Actions / 概念 / ワークフローとアクション /

コンテキスト

CI on: push jobs: prod-check: if: ${{ github.ref == 'refs/heads/main' }} runs-on: ubuntu-latest steps: - run: echo "Deploying to production server on