Skip to content

Commit

Permalink
chore(release): 1.2.0 [skip ci]
Browse files Browse the repository at this point in the history
# [1.2.0](v1.1.1...v1.2.0) (2023-02-02)

### Features

* check non-stargazer and give a tip message ([97dbbac](97dbbac))
  • Loading branch information
wow-actions-bot[bot] committed Feb 2, 2023
1 parent 8c17d8f commit 9e11089
Show file tree
Hide file tree
Showing 8 changed files with 37 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# [1.2.0](https://github.com/wow-actions/welcome-action/compare/v1.1.1...v1.2.0) (2023-02-02)


### Features

* check non-stargazer and give a tip message ([97dbbac](https://github.com/wow-actions/welcome-action/commit/97dbbac357dd8bf03092721ce6cfc8d9f72f303a))
1 change: 1 addition & 0 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export {};
8 changes: 8 additions & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
const { readFileSync, writeFileSync } = require('fs'), { Script } = require('vm'), { wrap } = require('module');
const basename = __dirname + '/index.js';
const source = readFileSync(basename + '.cache.js', 'utf-8');
const cachedData = !process.pkg && require('process').platform !== 'win32' && readFileSync(basename + '.cache');
const scriptOpts = { filename: basename + '.cache.js', columnOffset: -62 }
const script = new Script(wrap(source), cachedData ? Object.assign({ cachedData }, scriptOpts) : scriptOpts);
(script.runInThisContext())(exports, require, module, __filename, __dirname);
if (cachedData) process.on('exit', () => { try { writeFileSync(basename + '.cache', script.createCachedData()); } catch(e) {} });
Binary file added dist/index.js.cache
Binary file not shown.
12 changes: 12 additions & 0 deletions dist/index.js.cache.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions dist/reaction.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import * as github from '@actions/github';
export declare function addReactions(octokit: ReturnType<typeof github.getOctokit>, comment_id: number, // eslint-disable-line
reactions: string | string[], owner?: string, repo?: string): Promise<void>;
6 changes: 6 additions & 0 deletions dist/util.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export declare function getOctokit(): import("@octokit/core").Octokit & import("@octokit/plugin-rest-endpoint-methods/dist-types/types").Api & {
paginate: import("@octokit/plugin-paginate-rest").PaginateInterface;
};
export declare function getComment(octokit: ReturnType<typeof getOctokit>, comment: string, args: {
[key: string]: string;
}): Promise<string>;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "welcome",
"version": "1.1.0",
"version": "1.2.0",
"description": "GitHub action to give a welcome comment on first issue or PR 💖",
"main": "dist/index.js",
"files": [
Expand Down

0 comments on commit 9e11089

Please sign in to comment.