@onesignal/onesignal-vue3 2.1.0 → 2.2.1

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.
@@ -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