github_actions_testing 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: de48f6c747f09ec64d05b214ef8375c11d49a1c2975c1ddc0ff9a8143f72f90e
4
- data.tar.gz: edf35bf1782c58f1df25750819dcc7bd857a832e8b4b821ebc8b19ef77370085
3
+ metadata.gz: 6fe83d4bd71b139198b9694e3f70f2189badf6b5a1f594924cf0630f12473c4e
4
+ data.tar.gz: c223d25e61e218fe1f750f66b92f9544fc66cb74a6f8508501e6146948ecf620
5
5
  SHA512:
6
- metadata.gz: 0d8d5373e519de7e9c7ca3d3c82aadf4bdd5f72a8f8c2145b37d0f1156f9fe2800bb835e8b20c7de9768242e4f5d2536212d7c4b7a5d8e59eb2115a1436d5463
7
- data.tar.gz: 1c9a734efe4bcac31039c73ae90251e4cf5f0a53220551358d471967b65c25f2290645a0f7adca8362c533a27e8a32bdef530b9e665126b4ea4c4a0ab3175edd
6
+ metadata.gz: 74bb803edb8f5c27eca6b095af788dad02fed1da4931cb98170de849f1d1211c308cd743f66f2d2e22f6d5412cd1688b3f6c69c60757dcec533ecd6d0c80e6bf
7
+ data.tar.gz: 94564bbbdedcf2909e6c5744154798370e0ad90d8ab4628fa2db78d94e402ad115f5af02a293b884aac21586fd301a3d38fbf2f49aa7d0b069f45b2c6c42999c
@@ -32,7 +32,7 @@ jobs:
32
32
  git config --global user.email "charlie.tanksley@healthfinch.com"
33
33
  git config --global user.name "Charlie Tanksley"
34
34
  chmod 0600 $HOME/.gem/credentials
35
- printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n:github: Bearer ${GITHUB_TOKEN}\n" > $HOME/.gem/credentials
35
+ printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
36
36
  bundle exec rake release
37
37
  env:
38
38
  GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_AUTH_TOKEN}}
@@ -1,6 +1,9 @@
1
- name: Ruby
1
+ name: PR Checks
2
2
 
3
- on: [push]
3
+ on:
4
+ push:
5
+ branches-ignore:
6
+ - master
4
7
 
5
8
  jobs:
6
9
  build:
@@ -0,0 +1,25 @@
1
+ name: PR Merge
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+ paths-ignore:
8
+ - '**/version.rb'
9
+
10
+ jobs:
11
+ build:
12
+
13
+ runs-on: ubuntu-latest
14
+
15
+ steps:
16
+ - uses: actions/checkout@v1
17
+ - name: Set up Ruby 2.6
18
+ uses: actions/setup-ruby@v1
19
+ with:
20
+ ruby-version: 2.6.x
21
+ - name: Build and test with Rake
22
+ run: |
23
+ gem install bundler
24
+ bundle install --jobs 4 --retry 3
25
+ bundle exec rake
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GithubActionsTesting
4
- VERSION = '0.1.2'
4
+ VERSION = '0.1.3'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: github_actions_testing
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Charlie Tanksley
@@ -73,9 +73,9 @@ executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
- - ".github/actions/workflows/simple.yml"
77
76
  - ".github/workflows/gempush.yml"
78
- - ".github/workflows/ruby.yml"
77
+ - ".github/workflows/new_pr.yml"
78
+ - ".github/workflows/pr_merge.yml"
79
79
  - ".gitignore"
80
80
  - ".rspec"
81
81
  - Gemfile
@@ -1,17 +0,0 @@
1
- name: CI
2
-
3
- on: [push]
4
-
5
- jobs:
6
- build:
7
-
8
- runs-on: ubuntu-latest
9
-
10
- steps:
11
- - uses: actions/checkout@v1
12
- - name: Run a one-line script
13
- run: echo Hello, world!
14
- - name: Run a multi-line script
15
- run: |
16
- echo Add other actions to build,
17
- echo test, and deploy your project.