Skip to main content

765 Search results for "runs-on"

GitHub Actions / Monitor & troubleshoot / Monitor /

Viewing workflow run history

You can view logs for each run of a workflow. Logs include the status for each job and step in a workflow. Read access to the repository is required to

Code security / CodeQL for VS Code / Getting started /

Running CodeQL queries at scale with multi-repository variant analysis

You can run CodeQL queries on a large number of repositories on GitHub from Visual Studio Code. About running CodeQL queries at scale with multi-repository

GitHub Actions / Manage workflows and deployments / Manage workflow runs /

Approving workflow runs from private forks

private repository, a maintainer may need to approve any workflow runs. About workflow runs from private forks If you rely on using forks of your private repositories

GitHub Actions / Write workflows / Choose what workflows do /

Workflow commands for GitHub Actions

::group::{title} ::endgroup:: Example: Grouping log lines YAML jobs: bash-example: runs-on: ubuntu-latest steps: - name: Group of log lines run: | echo "::group::My

GitHub Actions / Write workflows / Choose where workflows run /

Choosing the runner for a job

that will process a job in your workflow. Overview Use jobs.<job_id>.runs-on to define the type of machine to run the job on. The destination machine

GitHub Education / GitHub Classroom / Integrate with an IDE /

Run student code in an IDE

You can run the code from a student assignment within the integrated development environment (IDE) that you configured for the assignment. About student

GitHub Desktop / Work with your remote repo /

Viewing and re-running checks in GitHub Desktop

of checks and re-run them in GitHub Desktop. About checks in GitHub Desktop GitHub Desktop displays the status of checks that have run in your pull request

GitHub Actions / Self-hosted runners / Manage self-hosted runners /

Using self-hosted runners in a workflow

with that label. To specify a self-hosted runner for your job, configure runs-on in your workflow file with self-hosted runner labels. Self-hosted runners

GitHub Actions / Write workflows /

About workflows

variable, and send it as a parameter to an example command. jobs: example-job: runs-on: ubuntu-latest steps: - name: Retrieve secret env: super_secret: ${{ secrets

GitHub Actions / Write workflows / Choose what workflows do /

Passing information between jobs

information about workflow runs. Example: Defining outputs for a job jobs: job1: runs-on: ubuntu-latest # Map a step output to a job output outputs: output1: ${{