building-github-actions Questions
2
Official github actions documentation says I can set the defaults to specfify defaults settings for all jobs (https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#default...
Carr asked 15/5, 2020 at 10:49
2
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 next step check with ...
Marketing asked 3/5, 2022 at 15:3
2
Solved
Let's take this example composite action found on Github's documentation:
name: 'Hello World'
description: 'Greet someone'
inputs:
who-to-greet: # id of input
description: 'Who to greet'
require...
Adim asked 27/4, 2021 at 13:26
3
I'm trying to pull docker image from ECR and deploy it on ec2 instance. However it's throwing an error like
docker pull $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
======END======
err: invalid refere...
Toadinthehole asked 3/11, 2022 at 15:39
2
In single repo, I want to create more than one trigger for different paths [paths: 'frontend/**' and paths: 'backend/**'] with different parameters for (same) build jobs. Following are the two work...
Teplica asked 11/6, 2021 at 17:15
5
Solved
Is there any way to cache docker-compose so that it will not build again and again?
here is my action workflow file:
name: Github Action
on:
push:
branches:
- staging
jobs:
test:
runs-on: ubu...
Gromyko asked 28/4, 2020 at 23:8
2
Solved
I am trying to automate build process of android app, I have stored baseUrl in local.properties file, and passing file content through Github secret, but Github action is keep failing,
build.grad...
Pace asked 9/6, 2020 at 9:9
2
Solved
I have 3 different workflows in a project configured at top as:
plan_streamline.yml
name: plan
on:
push:
branches:
- main
workflow_dispatch:
...
terrform_import.yml
name: terraform_import
...
Jo asked 2/11, 2020 at 21:17
4
Solved
I am trying to create a workflow to deploy Nuget packages to Github Package Repository using Github Actions.
In this case,
The repository is inside an organization
I am the owner of that organiz...
Contrayerva asked 19/4, 2020 at 17:17
3
Solved
In my github project Im trying to automatically create a new version and publish it to NPM whenever something is pushed to the master branch.
The idea
Create a new minor version
Publish the packag...
Distaff asked 22/10, 2020 at 17:26
3
Solved
I want to pass maven image version as as env variable but when i am trying to access that env.MAVEN_VERSION variable getting error
Error- The workflow is not valid. .github/workflows/Merge.yaml (Li...
Granadilla asked 21/9, 2022 at 7:59
2
Solved
Introduction
I am currently to crate a composite GitHub Actions that build a JavaDoc from Java project and publish it automatically to a static page with GitHub Page.
Problematic
But I got this err...
Solvolysis asked 8/2, 2022 at 22:43
2
Solved
Let's say I have a github action like this:
name: My Action
on:
pull_request:
types:
- closed
jobs:
myjob:
runs-on: ubuntu-latest
name: Test
if: github.event.pull_request.merged &&...
Ironhanded asked 4/1, 2020 at 6:54
3
Solved
I'm following the examples of a docker Github action to create my own action. I would like to keep the action in a private repository in my organization, and then re-use it from another repositorie...
Sprinkle asked 17/9, 2020 at 15:34
5
Solved
I have a workflow that uses 'strategy' = 'matrix' along with a list of specific configurations to build.
Here is my workflow file:
#
# build-N-test-v2.1-Dev and build-N-test-v2.1-Release are nearly...
Perlie asked 20/12, 2020 at 20:20
1
Solved
I have a Github Actions workflow that fires on:
on:
pull_request:
types:
- synchronize
- opened
that runs my custom action:
jobs:
my_job:
uses: "org/repo/.github/workflows/main.yml@mast...
Jarl asked 17/9, 2022 at 12:52
6
Solved
I'm trying to push to origin remote from GitHub action. The logic of my action is:
handle pull_request_review events and filter by comment message
checkout to master, merge PR branch, run some ch...
Radferd asked 13/9, 2019 at 9:57
2
Solved
I've noticed in various GitHub Action workflow examples, often when calling a pre-defined action (with the uses: syntax) then a particular version of that action is specified. For example:
steps:
...
Drabeck asked 2/12, 2021 at 0:27
1
Solved
I want to create a dropdown list for my GitHub Action Input parameter. This should help in selecting a value from the dropdown just like how the option is there to select the branches.
Asti asked 23/9, 2021 at 8:13
4
I have a github repository like the following
johndoe/hello-world
I am trying to set the following environment variables in github actions
env:
DOCKER_HUB_USERID: ${{ github.actor }}
REPOSI...
Seminole asked 27/2, 2020 at 12:4
1
Solved
I'm trying to copy contents of a folder into another one during a github workflow. I know the workflow can create new folders and files because calling build on a react project creates the build th...
Adalbertoadalheid asked 16/6, 2021 at 4:47
2
I'll try to be as clear as possible. I have also asked about related issues but didn't receive a convincing response.
I'm using React and firebase for hosting.
Also, I'm storing my firebase web AP...
Bunnybunow asked 17/2, 2021 at 17:43
1
In GitHub Actions, can we directly write python code under run | -section in action.yml file?
Can I write GitHub Actions scripts in Python?
Darvon asked 18/3, 2021 at 9:45
1
Solved
I have been looking at the GitHub REST API and i have been trying to find out where I can find the endpoint to get the status of a workflow in my actions. The only way i can tell if it is passing o...
Deanadeanda asked 29/1, 2021 at 10:55
1
Solved
I have some very expensive benchmarks/tests which I'd only like to run on some PRs, not all. Is there a way to do this with github actions?
Supernumerary asked 16/12, 2020 at 18:58
1 Next >
© 2022 - 2024 — McMap. All rights reserved.