mirror of
https://github.com/sdras/awesome-actions.git
synced 2024-10-01 00:55:38 -04:00
Merge branch 'master' into patch-1
This commit is contained in:
commit
a9fea4acb4
23
.github/workflows/lgtm.yml
vendored
23
.github/workflows/lgtm.yml
vendored
@ -1,23 +0,0 @@
|
|||||||
name: LGTM Reaction
|
|
||||||
on:
|
|
||||||
pull_request_review:
|
|
||||||
types: [submitted]
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@1.0.0
|
|
||||||
- uses: micnncim/action-lgtm-reaction@v0.5.4
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
GITHUB_REPOSITORY: ${{ github.repository }}
|
|
||||||
GITHUB_ISSUE_NUMBER: ${{ github.event.issue.number }}
|
|
||||||
GITHUB_COMMENT_BODY: ${{ github.event.comment.body }}
|
|
||||||
GITHUB_COMMENT_ID: ${{ github.event.comment.id }}
|
|
||||||
GITHUB_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }}
|
|
||||||
GITHUB_REVIEW_BODY: ${{ github.event.review.body }}
|
|
||||||
GITHUB_REVIEW_ID: ${{ github.event.review.id }}
|
|
||||||
with:
|
|
||||||
trigger: '["^LGTM!?$"]'
|
|
||||||
override: true
|
|
||||||
source: lgtmapp
|
|
14
README.md
14
README.md
@ -59,12 +59,13 @@ Actions are triggered by GitHub platform events directly in a repo and run on-de
|
|||||||
|
|
||||||
Tool actions for your workflow.
|
Tool actions for your workflow.
|
||||||
|
|
||||||
|
<!--lint ignore awesome-spell-check-->
|
||||||
|
- [actions/github](https://github.com/actions/github) - Wraps actions-toolkit into an Action for common GitHub automations.
|
||||||
- [actions/checkout](https://github.com/actions/checkout) - Setup your repository on your workflow.
|
- [actions/checkout](https://github.com/actions/checkout) - Setup your repository on your workflow.
|
||||||
- [actions/upload-artifact](https://github.com/actions/upload-artifact) - Upload artifacts from your workflow.
|
- [actions/upload-artifact](https://github.com/actions/upload-artifact) - Upload artifacts from your workflow.
|
||||||
- [actions/download-artifact](https://github.com/actions/download-artifact) - Download artifacts from your build.
|
- [actions/download-artifact](https://github.com/actions/download-artifact) - Download artifacts from your build.
|
||||||
- [actions/cache](https://github.com/actions/cache) - Cache dependencies and build outputs in GitHub Actions.
|
- [actions/cache](https://github.com/actions/cache) - Cache dependencies and build outputs in GitHub Actions.
|
||||||
- [actions/github-script](https://github.com/actions/github-script) - Write a script for GitHub API and the workflow contexts.
|
- [actions/github-script](https://github.com/actions/github-script) - Write a script for GitHub API and the workflow contexts.
|
||||||
- [`actions/github`](https://github.com/actions/github) - Wraps actions-toolkit into an Action for common GitHub automations.
|
|
||||||
|
|
||||||
#### Actions for GitHub Automation
|
#### Actions for GitHub Automation
|
||||||
|
|
||||||
@ -195,6 +196,13 @@ https://github.com/sdras/awesome-actions/workflows/Lint%20Awesome%20List/badge.s
|
|||||||
- [Restrict cursing action](https://github.com/sobolevn/restrict-cursing-action) - Moderator bot for your project, automatically removes bad language.
|
- [Restrict cursing action](https://github.com/sobolevn/restrict-cursing-action) - Moderator bot for your project, automatically removes bad language.
|
||||||
- [Publish GitHub release artifacts](https://github.com/skx/github-action-publish-binaries)
|
- [Publish GitHub release artifacts](https://github.com/skx/github-action-publish-binaries)
|
||||||
- [Jekyll Diff Action](https://github.com/David-Byrne/jekyll-diff-action) - Diffs the built Jekyll site after a change, and comments the result back to GitHub.
|
- [Jekyll Diff Action](https://github.com/David-Byrne/jekyll-diff-action) - Diffs the built Jekyll site after a change, and comments the result back to GitHub.
|
||||||
|
- [Branch Protection Bot](https://github.com/benjefferies/branch-protection-bot) - Temporarily disable and re-enable "Include administrators" option in branch protection.
|
||||||
|
- [Next SemVers](https://github.com/WyriHaximus/github-action-next-semvers) - Output the next version for major, minor, and patch version based on the given semver version.
|
||||||
|
- [Wait for commit statuses](https://github.com/WyriHaximus/github-action-wait-for-status) - Wait until all statuses and checks are successful or any of them has failed and set its status output accordingly.
|
||||||
|
- [Get Latest Tag](https://github.com/WyriHaximus/github-action-get-previous-tag) - Get the previous tag from git.
|
||||||
|
- [Create Milestone](https://github.com/WyriHaximus/github-action-create-milestone) - Create a new open milestone given the title and description.
|
||||||
|
- [Close Milestone](https://github.com/WyriHaximus/github-action-close-milestone) - Close the given milestone.
|
||||||
|
- [Action to enforce branch naming rules](https://github.com/deepakputhraya/action-branch-name)
|
||||||
|
|
||||||
### Testing and Linting
|
### Testing and Linting
|
||||||
|
|
||||||
@ -243,6 +251,7 @@ https://github.com/sdras/awesome-actions/workflows/Lint%20Awesome%20List/badge.s
|
|||||||
- [Run shellcheck, with reviewdog output on the PR](https://github.com/reviewdog/action-shellcheck)
|
- [Run shellcheck, with reviewdog output on the PR](https://github.com/reviewdog/action-shellcheck)
|
||||||
- [Build Go applications for multiplatform](https://github.com/izumin5210/action-go-crossbuild)
|
- [Build Go applications for multiplatform](https://github.com/izumin5210/action-go-crossbuild)
|
||||||
- [Catch insensitive, inconsiderate writing in your markdown docs](https://github.com/theashraf/alex-action)
|
- [Catch insensitive, inconsiderate writing in your markdown docs](https://github.com/theashraf/alex-action)
|
||||||
|
- [Run TestCafe tests](https://github.com/DevExpress/testcafe-action)
|
||||||
|
|
||||||
### Security
|
### Security
|
||||||
|
|
||||||
@ -274,6 +283,7 @@ https://github.com/sdras/awesome-actions/workflows/Lint%20Awesome%20List/badge.s
|
|||||||
- [Block Autosquash Commits](https://github.com/xt0rted/block-autosquash-commits-action)
|
- [Block Autosquash Commits](https://github.com/xt0rted/block-autosquash-commits-action)
|
||||||
- [Automatically Bump and Tag on Merge](https://github.com/anothrNick/github-tag-action)
|
- [Automatically Bump and Tag on Merge](https://github.com/anothrNick/github-tag-action)
|
||||||
- [Automatically Update PRs with Outdated Checks and Squash and Merge the Ones Matching All Branch Protections](https://github.com/tibdex/autosquash)
|
- [Automatically Update PRs with Outdated Checks and Squash and Merge the Ones Matching All Branch Protections](https://github.com/tibdex/autosquash)
|
||||||
|
- [Merge Pal - automatically update and merge pull requests](https://github.com/maxkomarychev/merge-pal-action)
|
||||||
- [Enforce naming convention on pull request title](https://github.com/deepakputhraya/action-pr-title)
|
- [Enforce naming convention on pull request title](https://github.com/deepakputhraya/action-pr-title)
|
||||||
|
|
||||||
### GitHub Pages
|
### GitHub Pages
|
||||||
@ -286,6 +296,7 @@ https://github.com/sdras/awesome-actions/workflows/Lint%20Awesome%20List/badge.s
|
|||||||
- [Deploy assets to GitHub pages](https://github.com/maxheld83/ghpages) - No building, just deploying.
|
- [Deploy assets to GitHub pages](https://github.com/maxheld83/ghpages) - No building, just deploying.
|
||||||
- [GitHub Actions for deploying to GitHub Pages with Static Site Generators](https://github.com/peaceiris/actions-gh-pages)
|
- [GitHub Actions for deploying to GitHub Pages with Static Site Generators](https://github.com/peaceiris/actions-gh-pages)
|
||||||
- [GitHub Action for Hexo](https://github.com/heowc/action-hexo)
|
- [GitHub Action for Hexo](https://github.com/heowc/action-hexo)
|
||||||
|
- [Deploy Google Analytics stats to GitHub Pages](https://github.com/cristianpb/analytics-google)
|
||||||
|
|
||||||
### Notifications and Messages
|
### Notifications and Messages
|
||||||
|
|
||||||
@ -358,6 +369,7 @@ https://github.com/sdras/awesome-actions/workflows/Lint%20Awesome%20List/badge.s
|
|||||||
- [Action For Semantic Release](https://github.com/cycjimmy/semantic-release-action)
|
- [Action For Semantic Release](https://github.com/cycjimmy/semantic-release-action)
|
||||||
- [Deploy a Collection to Ansible Galaxy](https://github.com/artis3n/ansible_galaxy_collection)
|
- [Deploy a Collection to Ansible Galaxy](https://github.com/artis3n/ansible_galaxy_collection)
|
||||||
- [An example of using Terraform to validate and apply GitHub administration](https://github.com/asgharlabs/github-terraform/tree/master/.github/workflows)
|
- [An example of using Terraform to validate and apply GitHub administration](https://github.com/asgharlabs/github-terraform/tree/master/.github/workflows)
|
||||||
|
- [Publish module to Puppet Forge](https://github.com/barnumbirr/action-forge-publish)
|
||||||
|
|
||||||
### External Services
|
### External Services
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user