onesignal-vue 2.1.0 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +2 -0
- package/.eslintrc.cjs +38 -0
- package/.github/workflows/release.yml +1 -1
- package/CHANGELOG.md +12 -0
- package/README.md +98 -81
- package/dist/index.d.ts +187 -30
- package/dist/index.js +14 -12
- package/dist/index.js.map +1 -1
- package/index.ts +238 -49
- package/package.json +5 -5
- package/tsconfig.json +0 -1
- package/.eslintrc.js +0 -44
- package/.github/os_probot_metadata.js +0 -58
- package/.github/set_response_times.js +0 -47
- package/.github/workflows/Zapier.yml +0 -34
- package/.github/workflows/release-drafter.yml +0 -41
- package/.github/workflows/set_response_time.yml +0 -32
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
name: Set Response Time
|
|
2
|
-
on:
|
|
3
|
-
issue_comment:
|
|
4
|
-
types:
|
|
5
|
-
- created
|
|
6
|
-
issues:
|
|
7
|
-
types:
|
|
8
|
-
- closed
|
|
9
|
-
jobs:
|
|
10
|
-
calculate:
|
|
11
|
-
name: set reponse time for the issue
|
|
12
|
-
if: github.event.issue.pull_request == null
|
|
13
|
-
runs-on: ubuntu-latest
|
|
14
|
-
permissions:
|
|
15
|
-
issues: write
|
|
16
|
-
steps:
|
|
17
|
-
- uses: actions/checkout@v3
|
|
18
|
-
with:
|
|
19
|
-
token: ${{ secrets.GITHUB_TOKEN }}
|
|
20
|
-
- run: npm install @octokit/action
|
|
21
|
-
- uses: actions/github-script@v6
|
|
22
|
-
id: set-time
|
|
23
|
-
with:
|
|
24
|
-
result-encoding: string
|
|
25
|
-
script: |
|
|
26
|
-
const os_probot_metadata = require('./.github/os_probot_metadata.js')
|
|
27
|
-
const set_response_time = require('./.github/set_response_times.js')
|
|
28
|
-
return await set_response_time(context, os_probot_metadata)
|
|
29
|
-
env:
|
|
30
|
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
31
|
-
- name: Get result
|
|
32
|
-
run: echo "${{steps.set-time.outputs.result}}" >> $GITHUB_STEP_SUMMARY
|