Actions
GitHub Actions gives you the flexibility to build an automated software development lifecycle workflow. You can write individual tasks, called actions, and combine them to create a custom workflow. Workflows are custom automated processes that you can set up in your repository to build, test, package, release, or deploy any code project on GitHub.
“With GitHub Actions you can build end-to-end continuous integration (CI) and continuous deployment (CD) capabilities directly in your repository. GitHub Actions powers GitHub's built-in continuous integration service. For more information, see "About continuous integration."
Featured Actions
Getting Started
Community & Support
Taking Action With GitHub Actions
Here are 307 public repositories matching this topic...
-
Updated
May 25, 2020 - JavaScript
When testing in a matrix, uploads often fail after the first one. I'm testing against different versions of Python, and I only need to upload the coverage information once, by including
if: matrix.python-version == 3.8in the codecov job. It took me a while to figure this out, so maybe it is nice to include this in the readme.
Hi! I can't find any clear documentation about the asset_content_type field -- what the options are, what this does etc.
If there is some documentation in another place, maybe it'd be worth linking to it in the readme?
Sorry if there's been an existing issue for this -- I couldn't find any.
Summary
Documentation for handling nested projects is out of date/incorrect.
The README example for the working-directory option shows that the folder structure below should work with a configuration that sets working-directory: e2e. This is not the case.
File structure:
repo/
app/
e2e/
cypress
-
Updated
Mar 15, 2018 - JavaScript
Currently certain PR's coming from forks result in the action running in the context of the fork, which means it can't post a comment or a PR review to the PR/issue.
Possible workarounds:
- Report the size table back using a Status Check
- Not sure if GitHub's UI will handle
-
Updated
Jun 22, 2020 - JavaScript
-
Updated
Jun 15, 2020 - JavaScript
-
Updated
Jun 3, 2020 - JavaScript
-
Updated
Dec 4, 2019 - JavaScript
-
Updated
May 6, 2020 - JavaScript
-
Updated
Jun 18, 2020 - JavaScript
-
Updated
Mar 8, 2020 - JavaScript
-
Updated
Feb 3, 2020 - JavaScript
-
Updated
Jun 9, 2020 - JavaScript
-
Updated
May 16, 2020 - JavaScript
-
Updated
Jun 13, 2020 - JavaScript
-
Updated
Feb 6, 2020 - JavaScript
-
Updated
Jun 22, 2020 - JavaScript
-
Updated
May 6, 2020 - JavaScript
-
Updated
Jun 20, 2020 - JavaScript
-
Updated
Jun 22, 2020 - JavaScript
Created by GitHub
Released October 16, 2018
- Organization
- actions
- Website
- github.com/features/actions
It took a few attempts to find a solution to get a version # to tag the releases with. In my case I have a VERSION file containing the version number, such as
0.1.0. This solution should be applicable even if the desired version is stored elsewhere so long as it can be accessed from a bash shell.The first step gets the version via a run command and sets the output. See the [documentation for