python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Github Action how to deal with standalone config file
We are using Github Action to deploy our code. On push, the source code will be pushed and we were able to build the code and deploy successfully if the config file is also tracked by the repository. ...
beedrill
Votes: 0
Answers: 0
Github Action that runs on Pull Request from a particular head branch, to a particular base branch
I'd like a Github action to run on Pull Request to a specific base branch, but from another specific head branch.
name: Run production tests
on:
push:
pull_request:
branches:
- main
...
Orun
Votes: 0
Answers: 1
Update declared variables in GIthub Actions workflow
How does one go about updating a variable that is declared in github action workflow?
Consider the following:
name: Test Variable
on:
push:
branches: [ main ]
pull_request:
branches: [ m...
envyM6
Votes: 0
Answers: 1
Connection to the postgres refused in Github Actions
I have a Django app with Postgres default database, running in docker. I also use Github actions as a CI. When I run the tests locally using the command
docker-compose run --rm app sh -c "python ...
Ivan Buruyane
Votes: 0
Answers: 1