About 7,540,000 results
Open links in new tab
  1. GitHub Actions: how can I run a workflow created on a non …

    Aug 11, 2020 · You can run a workflow that is still in development in a branch branch-name from the command line, with the GitHub CLI. The documentation says: To run a workflow on a …

  2. GitHub Actions: Does the IF have an ELSE? - Stack Overflow

    GitHub Actions doesn't have else statement to run a different command/action/code. But you're right, all what you need to do is to create another step with reversed if condition.

  3. How can I run GitHub Actions workflows locally?

    Dec 9, 2019 · I am planning to move our Travis CI build to GitHub Actions using Docker for our per-commit testing. Can I reproducibly run these new GitHub Actions workflows locally? Is …

  4. How to trigger a workflow from another workflow using GitHub …

    Apr 21, 2022 · Triggering Github Action using a POST request (Github REST API) How to trigger a workflow_dispatch from Github API? Triggering GitHub workflow using gh CLI As you can …

  5. GitHub actions - get absolute path to working directory

    May 18, 2021 · In Maven, I need to provide absolute path to a directory in my project. How can I get absolute path to the directory GitHub action is running in?

  6. Accessing environment variable in github actions - Stack Overflow

    Feb 18, 2024 · Define environments in Github - Dev, staging and prod. Define environment specific variable for all the 3 environments - URL (Not Prod_URL, Staging_URL but same …

  7. Get current date and time in GitHub workflows - Stack Overflow

    Mar 31, 2020 · I have a GitHub workflow for releasing nightly snapshots of the repository. It uses the create-release action. This is how the workflow file looks right now: name: Release Nightly …

  8. Reuse portion of GitHub Action across jobs - Stack Overflow

    With ./.github/actions/my-action the name of the my-action.yml file in your own repository. A reusable workflow does not have to be in the same repository, and can be in another public one.

  9. GitHub Actions - Define Workflow Level Environment Variable …

    Aug 18, 2020 · I'd like to define and set environment variable between jobs inside my Github Actions Workflow. The workflow below is what I've tried but unfortunately the environment …

  10. How to run a github-actions step, even if the previous step fails ...

    Nov 14, 2019 · Why use success() || failure() instead of always()? Reading the Status check functions documentation on Github: always Causes the step to always execute, and returns …