Skip to content

Commit

Permalink
Merge pull request #84 from syfxlin/develop
Browse files Browse the repository at this point in the history
ci(sync): Add sync workflow
  • Loading branch information
syfxlin committed Jan 19, 2024
2 parents 9870f35 + 1b9054d commit df13e15
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/sync.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Sync Repo
on:
push:
branches:
- master
workflow_dispatch:
jobs:
sync:
name: Sync
runs-on: ubuntu-latest
steps:
- name: Sync
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.SYNC_NTC_TOKEN }}
repository: syfxlin/next-theme-coline
event-type: sync-repo
4 changes: 2 additions & 2 deletions src/components/layouts/article-info/styles.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ export const excerpt = styled.css`
`;

export const thumbnail = styled.css`
flex-basis: 30%;
margin-left: ${theme.spacing.calc(4)};
flex-basis: 30% !important;
margin-left: ${theme.spacing.calc(4)} !important;
`;

export const link = styled.css`
Expand Down

0 comments on commit df13e15

Please sign in to comment.