Skip to content

Commit 7a973e9

Browse files
update workflows to only run on master
1 parent 31a1568 commit 7a973e9

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.github/workflows/build-pages.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: cd
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches:
6+
- master
47

58
jobs:
69
cd:

.github/workflows/crosspost.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: CrossPost
22

33
on:
44
push:
5+
branches:
6+
- master
57
paths:
68
- 'content/articles/*.md'
79

@@ -12,7 +14,7 @@ jobs:
1214
- name: Checkout Code
1315
uses: actions/checkout@v2
1416

15-
- uses: basicBrogrammer/crosspost-markdown@v0.1.0
17+
- uses: basicBrogrammer/crosspost-markdown@v0.1.1
1618
with:
1719
content-dir: 'content/articles/'
1820
dev-to-token: ${{ secrets.DEV_TO }}

nuxt.config.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ export default {
1111
meta: [
1212
{ charset: 'utf-8' },
1313
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
14-
{ hid: 'description', name: 'description', content: '' },
14+
{
15+
hid: 'description',
16+
name: 'description',
17+
content: "I'm a dude. He's a dude. She's a dude. We're all dudes. HEY!",
18+
},
1519
],
1620
link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }],
1721
},

0 commit comments

Comments
 (0)