About 50 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. Accessing environment variable in github actions - Stack Overflow

    Feb 18, 2024 · I am building a github action which requires these URLs, I created environments under settings of my github repo and added variable name as URL in all 3 environments.

  3. Workflow not showing up in GitHub Actions - Stack Overflow

    Sep 23, 2023 · I am doing a continuous integration workflow in GitHub Actions to trigger "pytest backend/tests/" command on a push to any branch. Right now, I am testing …

  4. 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 …

  5. 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.

  6. Github Actions - trigger another action after one action is …

    Jul 6, 2020 · According to GitHub Actions documentation a single YAML file is called a workflow (not an action) and consists of jobs. Jobs contain a sequence of steps (including actions) that …

  7. 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 …

  8. How to attach a markdown page to GitHub Actions workflow run …

    May 12, 2021 · The GitHub Action "dotnet-tests-report" attaches a markdown page with test results to the Github Action workflow run summary. This is really nice. Once the …

  9. In a GitHub Action how to conditionalize a step based off the …

    May 3, 2022 · Building a GitHub action based on the commit message I'm trying to base a step on whether the commit message contains a particular string, set it to a variable and then in the …

  10. What is "uses" directive in github actions used for?

    May 27, 2020 · Below is from the GitHub Actions documentation regarding uses (ie jobs. {job_id}.steps.uses) keyword Selects an action to run as part of a step in your job. An action is …