All Projects → srt32 → Revert

srt32 / Revert

Licence: mit
A GitHub Action to automatically revert a commit on a '/revert' comment

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to Revert

release-changelog-builder-action
A GitHub action that builds your release notes / changelog fast, easy and exactly the way you want.
Stars: ✭ 515 (+478.65%)
Mutual labels:  pull-requests, action
Pr Size Labeler
🏷 Visualize and optionally limit the size of your Pull Requests
Stars: ✭ 140 (+57.3%)
Mutual labels:  pull-requests, action
Reviewbot
Reviewbot is a Slack bot that shows reviewable pull requests.
Stars: ✭ 40 (-55.06%)
Mutual labels:  pull-requests
Changelog Ci
Changelog CI is a GitHub Action that generates changelog, Then the changelog is committed and/or commented to the release Pull request.
Stars: ✭ 68 (-23.6%)
Mutual labels:  pull-requests
Monocle
Detect anomalies in your GitHub/Gerrit projects
Stars: ✭ 50 (-43.82%)
Mutual labels:  pull-requests
Github Review Filter
Chrome extension to filter files in GitHub code review using glob
Stars: ✭ 42 (-52.81%)
Mutual labels:  pull-requests
Rsync Deployments
GitHub Action for deploying code via rsync over ssh
Stars: ✭ 59 (-33.71%)
Mutual labels:  action
Squashed Merge Message
Use Pull Request description as Squashed and Merged commit messages.
Stars: ✭ 34 (-61.8%)
Mutual labels:  pull-requests
Cachix Action
Build software only once and put it in a global cache
Stars: ✭ 85 (-4.49%)
Mutual labels:  action
Api server boilerplate
typescript express board boilerplate using routing controller
Stars: ✭ 52 (-41.57%)
Mutual labels:  action
Hacktoberfest2020
Make your first Pull Request and earn a free tee from GitHub!
Stars: ✭ 1,141 (+1182.02%)
Mutual labels:  pull-requests
Skip Commit
GitHub Action: skip based on the last commit message containing a string
Stars: ✭ 51 (-42.7%)
Mutual labels:  action
Naming Cheatsheet
Comprehensive language-agnostic guidelines on variables naming. Home of the A/HC/LC pattern.
Stars: ✭ 9,475 (+10546.07%)
Mutual labels:  action
Curl
Wraps the curl CLI to be used in Github Actions
Stars: ✭ 59 (-33.71%)
Mutual labels:  action
Github Action Get Previous Tag
Get the previous tag
Stars: ✭ 42 (-52.81%)
Mutual labels:  action
Epic Kitchens 55 Action Models
EPIC-KITCHENS-55 baselines for Action Recognition
Stars: ✭ 68 (-23.6%)
Mutual labels:  action
Minisauras
An open-source CI/CD automation tool based on GitHub Actions that pulls all the JavaScript and CSS files from your base branch, minify them and creates a pull-request with a new branch.
Stars: ✭ 40 (-55.06%)
Mutual labels:  action
Processjs
Stars: ✭ 48 (-46.07%)
Mutual labels:  action
Repo Lockdown
GitHub Action that immediately closes and locks issues and pull requests
Stars: ✭ 56 (-37.08%)
Mutual labels:  pull-requests
Sense Navigation
Sheet Navigation + Actions for Qlik Sense.
Stars: ✭ 85 (-4.49%)
Mutual labels:  action

GitHub Action to revert a commit via a comment

After installation, comment /revert <commit_sha> to trigger the action.

revert

Installation

name: Automatic Revert

on:
  issue_comment:
    types: [created]

jobs:
  revert-commit:

    runs-on: ubuntu-latest

    if: contains(github.event.comment.body, '/revert')

    steps:
      - name: Checkout latest code
        uses: actions/[email protected]
      - name: Automatic Revert
        uses: srt32/[email protected]
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

This Action is heavily inspired by rebase.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].