Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
b843edc
chore: release v1.2.4
klamr-io May 6, 2023
bc3408e
test logging
klamr-io May 6, 2023
616d36a
chore: release v1.2.5
klamr-io May 6, 2023
2ed7226
.
klamr-io May 6, 2023
236427f
chore: release v1.2.6
klamr-io May 6, 2023
f5f5f28
.
klamr-io May 6, 2023
5b1a6c4
chore: release v1.2.7
klamr-io May 6, 2023
f9ac1c8
.
klamr-io May 6, 2023
8956f0d
.
klamr-io May 6, 2023
a54d503
chore: release v1.2.10
klamr-io May 6, 2023
0a6673c
.
klamr-io May 6, 2023
7e2361b
chore: release v1.2.11
klamr-io May 6, 2023
79142fd
.
klamr-io May 6, 2023
e41ffde
,
klamr-io May 6, 2023
24f0ffa
chore: release v1.2.12
klamr-io May 6, 2023
5c5ec49
.
klamr-io May 8, 2023
03c5c57
Update sync.ts
rm-rf42 May 8, 2023
30ab1ca
Update sync.ts
rm-rf42 May 8, 2023
79a8246
Update index.ts
rm-rf42 May 8, 2023
c681ca6
Delete versioning.yml
rm-rf42 May 8, 2023
166a26e
Update ci.yml
rm-rf42 May 8, 2023
1ea958d
Update index.ts
rm-rf42 May 8, 2023
9842633
Update sync.ts
rm-rf42 May 8, 2023
fa6b1bb
Update index.ts
rm-rf42 May 8, 2023
f479ace
Merge branch 'main' of github.com:KlamrIO/notion-github-action into main
klamr-io May 8, 2023
9589b83
.
klamr-io May 8, 2023
755610e
.
klamr-io May 8, 2023
067fdd1
.
klamr-io May 8, 2023
652abdb
chore: release v1.2.14
klamr-io May 8, 2023
60d8233
.
klamr-io May 8, 2023
8dff945
chore: release v1.2.15
klamr-io May 8, 2023
f6d86aa
.
klamr-io May 8, 2023
652ee22
chore: release v1.2.16
klamr-io May 8, 2023
3060776
[auto] Update compiled version
github-actions[bot] May 8, 2023
2083613
,
klamr-io May 8, 2023
bd20334
chore: release v1.2.17
klamr-io May 8, 2023
1a9fbbf
[auto] Update compiled version
github-actions[bot] May 8, 2023
8fe4149
.
klamr-io May 8, 2023
432e0de
Merge branch 'main' of github.com:KlamrIO/notion-github-action into main
klamr-io May 8, 2023
25758e8
.
klamr-io May 8, 2023
29e8882
chore: release v1.2.19
klamr-io May 8, 2023
11305b5
updating versions
klamr-io May 8, 2023
769fb2e
.
klamr-io May 8, 2023
e8340a1
chore: release v1.2.20
klamr-io May 8, 2023
ef9bb9b
.
klamr-io May 8, 2023
ea3acfb
.
klamr-io May 8, 2023
c40ed47
chore: release v1.2.21
klamr-io May 8, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Build
on:
push:
branches:
- master
- main
workflow_dispatch:

jobs:
Expand All @@ -12,18 +12,20 @@ jobs:

steps:
- name: Check out Git repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: main
# Custom token to allow commits trigger other workflows.
token: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Node.js
uses: actions/setup-node@v2.1.5
uses: actions/setup-node@v3
with:
node-version: 12
node-version: 16

- name: Cache node modules
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
Expand All @@ -44,7 +46,7 @@ jobs:
- name: Commit dist
uses: EndBug/add-and-commit@v7
with:
add: "dist"
add: 'dist'
author_name: github-actions[bot]
author_email: github-actions[bot]@users.noreply.github.com
message: "[auto] Update compiled version"
message: '[auto] Update compiled version'
30 changes: 4 additions & 26 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,35 +6,13 @@ on:
workflow_dispatch:

jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- run: npm ci
- run: npm run lint

jest:
name: Jest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- run: npm ci
- run: npm test

build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '16'
- run: npm ci
- run: npm run build
12 changes: 0 additions & 12 deletions .github/workflows/milestones.yml

This file was deleted.

11 changes: 0 additions & 11 deletions .github/workflows/versioning.yml

This file was deleted.

2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ inputs:
default: ${{ github.token }}

runs:
using: 'node12'
using: 'node16'
main: 'dist/index.js'
branding:
icon: zap
Expand Down
Loading