Skip to content

Commit

Permalink
chore(release): 0.8.0 [skip ci]
Browse files Browse the repository at this point in the history
# [0.8.0](v0.7.3...v0.8.0) (2021-07-20)

### Features

* automatic crawler name ([#24](#24)) ([d6861c2](d6861c2))
  • Loading branch information
semantic-release-bot committed Jul 20, 2021
1 parent d6861c2 commit a16ae19
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [0.8.0](https://github.com/algolia/algoliasearch-crawler-github-actions/compare/v0.7.3...v0.8.0) (2021-07-20)


### Features

* automatic crawler name ([#24](https://github.com/algolia/algoliasearch-crawler-github-actions/issues/24)) ([d6861c2](https://github.com/algolia/algoliasearch-crawler-github-actions/commit/d6861c20f5ca277178bcc79f301150d7c67e0ab8))

## [0.7.3](https://github.com/algolia/algoliasearch-crawler-github-actions/compare/v0.7.2...v0.7.3) (2021-07-19)


Expand Down
4 changes: 2 additions & 2 deletions build/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -402,8 +402,8 @@ var CRAWLER_USER_ID = core.getInput('crawler-user-id');
var CRAWLER_API_KEY = core.getInput('crawler-api-key');
var CRAWLER_API_BASE_URL = core.getInput('crawler-api-base-url');
var GITHUB_TOKEN = core.getInput('github-token');
var CRAWLER_NAME = core.getInput('crawler-name').replace(/[ /]/g, '-');
var INDEX_NAME = CRAWLER_NAME.replace(/[/~,[\]`&|;$*\\]/g, '');
var CRAWLER_NAME = core.getInput('crawler-name');
var INDEX_NAME = CRAWLER_NAME.replace(/[ /]/g, '-').replace(/[/~,[\]`&|;$*\\]/g, '');
var ALGOLIA_APP_ID = core.getInput('algolia-app-id');
var ALGOLIA_API_KEY = core.getInput('algolia-api-key');
var SITE_URL = core.getInput('site-url');
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "algoliasearch-crawler-github-actions",
"version": "0.7.3",
"version": "0.8.0",
"description": "Github action for Algolia crawler indexing",
"main": "index.js",
"scripts": {
Expand Down

1 comment on commit a16ae19

@vercel
Copy link

@vercel vercel bot commented on a16ae19 Jul 20, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.