From cf62233526ad6fde86f8f9b9938cd9e93970a222 Mon Sep 17 00:00:00 2001 From: Gavin Nelson Date: Tue, 22 Nov 2022 12:27:55 -0800 Subject: [PATCH 1/8] Save goal-16.svg, goal-24.svg --- icons/goal-16.svg | 12 ++++++++++++ icons/goal-24.svg | 5 +++++ 2 files changed, 17 insertions(+) create mode 100644 icons/goal-16.svg create mode 100644 icons/goal-24.svg diff --git a/icons/goal-16.svg b/icons/goal-16.svg new file mode 100644 index 000000000..5cda69da9 --- /dev/null +++ b/icons/goal-16.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons/goal-24.svg b/icons/goal-24.svg new file mode 100644 index 000000000..d9e93fd3c --- /dev/null +++ b/icons/goal-24.svg @@ -0,0 +1,5 @@ + + + + + From 082607a60403dbf013e748ce7c335b8051a9bd5b Mon Sep 17 00:00:00 2001 From: Gavin Nelson Date: Tue, 22 Nov 2022 20:28:34 +0000 Subject: [PATCH 2/8] Optimize SVGs --- icons/goal-16.svg | 13 +------------ icons/goal-24.svg | 6 +----- 2 files changed, 2 insertions(+), 17 deletions(-) diff --git a/icons/goal-16.svg b/icons/goal-16.svg index 5cda69da9..038665309 100644 --- a/icons/goal-16.svg +++ b/icons/goal-16.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/icons/goal-24.svg b/icons/goal-24.svg index d9e93fd3c..d513095ad 100644 --- a/icons/goal-24.svg +++ b/icons/goal-24.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file From 49d78bcb8d09aeb181da7d4e7bb6475ee3166f52 Mon Sep 17 00:00:00 2001 From: Gavin Nelson Date: Tue, 22 Nov 2022 12:33:27 -0800 Subject: [PATCH 3/8] Create selfish-pianos-talk.md --- .changeset/selfish-pianos-talk.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/selfish-pianos-talk.md diff --git a/.changeset/selfish-pianos-talk.md b/.changeset/selfish-pianos-talk.md new file mode 100644 index 000000000..ae52fa038 --- /dev/null +++ b/.changeset/selfish-pianos-talk.md @@ -0,0 +1,5 @@ +--- +"@primer/octicons": minor +--- + +Add Goal icons From 51d34061f41af96a5dc2aedad4197b3ea8b2adca Mon Sep 17 00:00:00 2001 From: Gavin Nelson Date: Mon, 28 Nov 2022 13:23:27 -0800 Subject: [PATCH 4/8] Save goal-16.svg, goal-24.svg --- icons/goal-16.svg | 13 ++++++++++++- icons/goal-24.svg | 6 +++++- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/icons/goal-16.svg b/icons/goal-16.svg index 038665309..e98229b13 100644 --- a/icons/goal-16.svg +++ b/icons/goal-16.svg @@ -1 +1,12 @@ - \ No newline at end of file + + + + + + + + + + + + diff --git a/icons/goal-24.svg b/icons/goal-24.svg index d513095ad..73ac5e4aa 100644 --- a/icons/goal-24.svg +++ b/icons/goal-24.svg @@ -1 +1,5 @@ - \ No newline at end of file + + + + + From 5d93bc8f6aa5e4af8edb8aea1298b400045a5fba Mon Sep 17 00:00:00 2001 From: Gavin Nelson Date: Mon, 28 Nov 2022 21:24:06 +0000 Subject: [PATCH 5/8] Optimize SVGs --- icons/goal-16.svg | 13 +------------ icons/goal-24.svg | 6 +----- 2 files changed, 2 insertions(+), 17 deletions(-) diff --git a/icons/goal-16.svg b/icons/goal-16.svg index e98229b13..c9e18cf20 100644 --- a/icons/goal-16.svg +++ b/icons/goal-16.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/icons/goal-24.svg b/icons/goal-24.svg index 73ac5e4aa..6df0677bf 100644 --- a/icons/goal-24.svg +++ b/icons/goal-24.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file From 41f32649e8ed7744b398cb9e2dc7f85a568dae98 Mon Sep 17 00:00:00 2001 From: Cole Bemis Date: Mon, 28 Nov 2022 22:56:22 +0000 Subject: [PATCH 6/8] Fix ruby job --- .github/workflows/ci.yml | 96 ++++++++++++++++++++-------------------- 1 file changed, 48 insertions(+), 48 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a1af06bad..9e19ae104 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -97,26 +97,26 @@ jobs: run: working-directory: ./lib/octicons_gem steps: - - uses: actions/checkout@v2 - - name: Setup Ruby - uses: actions/setup-ruby@v1 - with: - ruby-version: 2.7 - - uses: actions/download-artifact@v2 - with: - name: octicons-build - path: ./lib/octicons_gem/lib/build - - run: bundle install - - name: Linting - run: bundle exec rake lint - - name: Testing - run: bundle exec rake test - - name: Build - run: bundle exec rake build - - uses: actions/upload-artifact@master - with: - name: octicons-gem - path: ./lib/octicons_gem/pkg + - uses: actions/checkout@v2 + - name: Setup Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: 2.7 + - uses: actions/download-artifact@v2 + with: + name: octicons-build + path: ./lib/octicons_gem/lib/build + - run: bundle install + - name: Linting + run: bundle exec rake lint + - name: Testing + run: bundle exec rake test + - name: Build + run: bundle exec rake build + - uses: actions/upload-artifact@master + with: + name: octicons-gem + path: ./lib/octicons_gem/pkg octicons_helper: name: 'gem:octicons_helper' @@ -126,20 +126,20 @@ jobs: run: working-directory: ./lib/octicons_helper steps: - - uses: actions/checkout@v2 - - name: Setup Ruby - uses: actions/setup-ruby@v1 - with: - ruby-version: 2.7 - - uses: actions/download-artifact@v2 - with: - name: octicons-gem - path: ./lib/octicons_helper/vendor/cache - - run: bundle install - - name: Linting - run: bundle exec rake lint - - name: Testing - run: bundle exec rake test + - uses: actions/checkout@v2 + - name: Setup Ruby + uses: actions/setup-ruby@v1 + with: + ruby-version: 2.7 + - uses: actions/download-artifact@v2 + with: + name: octicons-gem + path: ./lib/octicons_helper/vendor/cache + - run: bundle install + - name: Linting + run: bundle exec rake lint + - name: Testing + run: bundle exec rake test octicons_jekyll: name: 'gem:octicons_jekyll' @@ -149,17 +149,17 @@ jobs: run: working-directory: ./lib/octicons_jekyll steps: - - uses: actions/checkout@v2 - - name: Setup Ruby - uses: actions/setup-ruby@v1 - with: - ruby-version: 2.7 - - uses: actions/download-artifact@v2 - with: - name: octicons-gem - path: ./lib/octicons_jekyll/vendor/cache - - run: bundle install - - name: Linting - run: bundle exec rake lint - - name: Testing - run: bundle exec rake test + - uses: actions/checkout@v2 + - name: Setup Ruby + uses: actions/setup-ruby@v1 + with: + ruby-version: 2.7 + - uses: actions/download-artifact@v2 + with: + name: octicons-gem + path: ./lib/octicons_jekyll/vendor/cache + - run: bundle install + - name: Linting + run: bundle exec rake lint + - name: Testing + run: bundle exec rake test From 1b7787b07cdf8a9d50a1f8877696246967cbcd77 Mon Sep 17 00:00:00 2001 From: Cole Bemis Date: Mon, 28 Nov 2022 23:27:27 +0000 Subject: [PATCH 7/8] Fix all ruby jobs --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9e19ae104..7b1ac21d1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -128,7 +128,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Setup Ruby - uses: actions/setup-ruby@v1 + uses: ruby/setup-ruby@v1 with: ruby-version: 2.7 - uses: actions/download-artifact@v2 @@ -151,7 +151,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Setup Ruby - uses: actions/setup-ruby@v1 + uses: ruby/setup-ruby@v1 with: ruby-version: 2.7 - uses: actions/download-artifact@v2 From 84ce5fcb16a164768bef7b3f5d2277ca1dd5f341 Mon Sep 17 00:00:00 2001 From: Cole Bemis Date: Mon, 28 Nov 2022 23:30:09 +0000 Subject: [PATCH 8/8] Update api snapshot --- .../__tests__/__snapshots__/public-api.test.js.snap | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/octicons_react/__tests__/__snapshots__/public-api.test.js.snap b/lib/octicons_react/__tests__/__snapshots__/public-api.test.js.snap index 50df72b72..2e9572002 100644 --- a/lib/octicons_react/__tests__/__snapshots__/public-api.test.js.snap +++ b/lib/octicons_react/__tests__/__snapshots__/public-api.test.js.snap @@ -133,6 +133,7 @@ exports[`@primer/octicons-react should not update exports without a semver chang "GitPullRequestDraftIcon", "GitPullRequestIcon", "GlobeIcon", + "GoalIcon", "GrabberIcon", "GraphIcon", "HashIcon",