Skip to content

Commit 9e96cb1

Browse files
authored
Merge pull request #815 from newrelic/develop
Release
2 parents f89b0b6 + 3f615ab commit 9e96cb1

File tree

11 files changed

+64
-43
lines changed

11 files changed

+64
-43
lines changed

.github/workflows/fetch-related-content.yml

+6-42
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515
steps:
1616
- name: Checkout repo
1717
uses: actions/checkout@v2
18+
with:
19+
ref: main
1820

1921
- name: Setup node.js
2022
uses: actions/setup-node@v1
@@ -47,50 +49,12 @@ jobs:
4749
git commit -m 'chore(related-content): updated related content data'
4850
echo "::set-output name=commit::true"
4951
50-
- name: Temporarily disable "required_pull_request_reviews" branch protection
51-
id: disable-branch-protection
52-
if: always()
53-
uses: actions/github-script@v1
54-
with:
55-
github-token: ${{ secrets.OPENSOURCE_BOT_TOKEN }}
56-
previews: luke-cage-preview
57-
script: |
58-
const result = await github.repos.updateBranchProtection({
59-
owner: context.repo.owner,
60-
repo: context.repo.repo,
61-
branch: 'develop',
62-
required_status_checks: null,
63-
restrictions: null,
64-
enforce_admins: null,
65-
required_pull_request_reviews: null
66-
})
67-
console.log("Result:", result)
68-
52+
# Push directly to `main` branch because we want updates to the related
53+
# content to trigger a deploy. If we commit directly to the `develop`
54+
# branch, it would require a PR from the team to deploy the changes.
6955
- name: Push Commit
7056
if: steps.commit-changes.outputs.commit == 'true'
7157
uses: ad-m/[email protected]
7258
with:
7359
github_token: ${{ secrets.OPENSOURCE_BOT_TOKEN }}
74-
branch: develop
75-
76-
- name: Re-enable "required_pull_request_reviews" branch protection
77-
id: enable-branch-protection
78-
if: always()
79-
uses: actions/github-script@v1
80-
with:
81-
github-token: ${{ secrets.OPENSOURCE_BOT_TOKEN }}
82-
previews: luke-cage-preview
83-
script: |
84-
const result = await github.repos.updateBranchProtection({
85-
owner: context.repo.owner,
86-
repo: context.repo.repo,
87-
branch: 'develop',
88-
required_status_checks: null,
89-
restrictions: null,
90-
enforce_admins: true,
91-
required_pull_request_reviews: {
92-
dismiss_stale_reviews: true,
93-
required_approving_review_count: 1
94-
}
95-
})
96-
console.log("Result:", result)
60+
branch: main

src/components/Agenda/Session.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const Session = ({
2121
>
2222
<h4
2323
css={css`
24-
font-size: 1rem;
24+
font-size: 0.9rem;
2525
font-weight: 700;
2626
margin-bottom: 0.25rem;
2727
`}
19.1 KB
Loading
13.4 KB
Loading
Loading
19.7 KB
Loading
20.1 KB
Loading
20.1 KB
Loading
13.9 KB
Loading
Loading

src/pages/nerd-days.js

+57
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,15 @@ import LindsyFarina from '../images/nerd-days/speakers/LindsyFarina.jpg';
3737
import TaliaNassi from '../images/nerd-days/speakers/TaliaNassi.jpg';
3838
import ThomasMartin from '../images/nerd-days/speakers/ThomasMartin.jpg';
3939

40+
import AlecSwanson from '../images/nerd-days/speakers/AlecSwanson.jpg';
41+
import BrianThomason from '../images/nerd-days/speakers/BrianThomason.jpg';
42+
import ChrisTrombley from '../images/nerd-days/speakers/ChrisTrombley.jpg';
43+
import GabeObrien from '../images/nerd-days/speakers/GabeObrien.jpg';
44+
import LiamHurrell from '../images/nerd-days/speakers/LiamHurrell.jpg';
45+
import MichaelCaron from '../images/nerd-days/speakers/MichaelCaron.jpg';
46+
import PhilWeber from '../images/nerd-days/speakers/PhilWeber.jpg';
47+
import SebastianRamirez from '../images/nerd-days/speakers/SebastianRamirez.jpg';
48+
4049
const NerdDaysPage = () => {
4150
const {
4251
site: { layout },
@@ -744,6 +753,54 @@ const speakers = [
744753
title: 'Director, Site Reliability',
745754
company: '27 Global',
746755
},
756+
{
757+
name: 'Alec Swanson',
758+
image: AlecSwanson,
759+
title: 'Software Engineer',
760+
company: 'New Relic',
761+
},
762+
{
763+
name: 'Brian Thomason',
764+
image: BrianThomason,
765+
title: 'Senior Partner Solutions Consultant',
766+
company: 'New Relic',
767+
},
768+
{
769+
name: 'Chris Trombley',
770+
image: ChrisTrombley,
771+
title: 'Senior Software Engineer',
772+
company: 'New Relic',
773+
},
774+
{
775+
name: "Gabe O'Brien",
776+
image: GabeObrien,
777+
title: 'Senior Software Engineer',
778+
company: 'New Relic',
779+
},
780+
{
781+
name: 'Liam Hurrell',
782+
image: LiamHurrell,
783+
title: 'Senior Technical Training Specialist',
784+
company: 'New Relic',
785+
},
786+
{
787+
name: 'Michael Caron',
788+
image: MichaelCaron,
789+
title: 'Senior Technical Training Specialist',
790+
company: 'New Relic',
791+
},
792+
{
793+
name: 'Phil Weber',
794+
image: PhilWeber,
795+
title: 'Senior Technical Training Specialist',
796+
company: 'New Relic',
797+
},
798+
{
799+
name: 'Sebastian Remirez',
800+
image: SebastianRamirez,
801+
title: 'Lead Software Engineer',
802+
company: 'New Relic',
803+
},
747804
];
748805

749806
const breakpoints = {

0 commit comments

Comments
 (0)