From f72419c448fc121748144f5da367242b7a336079 Mon Sep 17 00:00:00 2001 From: "Daniel C. Daugherty" Date: Thu, 31 Mar 2022 18:29:32 -0700 Subject: [PATCH 1/2] Added alias for folder command to point to space. --- lib/gzr/cli.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/gzr/cli.rb b/lib/gzr/cli.rb index 86b2ec2..3efb3c0 100644 --- a/lib/gzr/cli.rb +++ b/lib/gzr/cli.rb @@ -57,6 +57,7 @@ def version puts "v#{Gzr::VERSION}" end map %w(--version -v) => :version + map folder: :space # Alias folder command to space require_relative 'commands/attribute' register Gzr::Commands::Attribute, 'attribute', 'attribute [SUBCOMMAND]', 'Command description...' From 5666feddcb2a4c0131ece48e415b002aaa4f37f5 Mon Sep 17 00:00:00 2001 From: Mike DeAngelo Date: Fri, 13 May 2022 13:59:46 -0400 Subject: [PATCH 2/2] chore: change semantic pull request check --- .github/workflows/semantic-pull-requests.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/semantic-pull-requests.yml diff --git a/.github/workflows/semantic-pull-requests.yml b/.github/workflows/semantic-pull-requests.yml new file mode 100644 index 0000000..331650d --- /dev/null +++ b/.github/workflows/semantic-pull-requests.yml @@ -0,0 +1,17 @@ +# .github/workflows/semantic-pull-requests.yml +name: Semantic Pull Requests + +on: + pull_request_target: + types: + - opened + - edited + - reopened + - synchronize + +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - name: semantic-pull-request + uses: amannn/action-semantic-pull-request@v4.5.0