Commit Graph

862 Commits

Author SHA1 Message Date
Gary Ewan Park
6a5d7e6b39
Merge branch 'master' into awesome-lint 2019-12-25 11:15:06 +00:00
Gary Ewan Park
5aba1fafb0
Add actions from Decathlon (#287)
Add actions from Decathlon
2019-12-25 11:10:17 +00:00
Gary Ewan Park
9a196ae3dc
Add Ghost Theme Deploy Action (#288)
Add Ghost Theme Deploy Action
2019-12-25 11:02:21 +00:00
Mingjie Jiang
dd814a4fe1
Add Ghost Theme Deploy Action 2019-12-25 00:55:10 -05:00
Laurent Thiebault
6e7919d803
Update README.md 2019-12-24 16:51:57 +01:00
Laurent Thiebault
7bc0bb6009
Add actions from Decathlon 2019-12-24 16:46:23 +01:00
Gary Ewan Park
0135afec86
Merge pull request #285 from deef0000dragon1/patch-1
Add JSON-edit-action
2019-12-24 08:56:36 +00:00
Sisir Koppaka
f8437b3928 add action for awesome-lint to the utilities 2019-12-24 13:42:27 +05:30
deef
0435a22f3b
Add JSON-edit-action
Github action for editing a json file.
https://github.com/deef0000dragon1/json-edit-action
2019-12-24 02:53:08 -05:00
Gary Ewan Park
24c4b445d6
Add Maven Publish Action (#281)
Add Maven Publish Action
2019-12-22 21:48:14 +00:00
Gary Ewan Park
4efd1059ea
Merge branch 'master' into action-maven-publish 2019-12-22 21:48:06 +00:00
Gary Ewan Park
9f3a0dfa9e
Add Electron Builder Action (#282)
Add Electron Builder Action
2019-12-22 21:45:02 +00:00
Gary Ewan Park
a438a51306
add AWS Secrets Manager Actions (#284)
add AWS Secrets Manager Actions
2019-12-22 21:43:54 +00:00
Penguin
2a926536e9
Merge branch 'master' into master 2019-12-20 18:28:26 +09:00
Penguin
7970130399 add AWS Secrets Manager Actions 2019-12-20 18:25:59 +09:00
Sarah Drasner
881944ba24
Merge pull request #283 from maxkomarychev/master
Add octions (GitHub REST Actions)
2019-12-19 15:00:34 -07:00
Max Komarychev
950341b656 Add octions (GitHub REST Actions) 2019-12-19 23:06:05 +02:00
Samuel Meuli
c481adb26f
Add Electron Builder Action 2019-12-18 22:50:41 +01:00
Samuel Meuli
2390e46207
Add Maven Publish Action 2019-12-18 22:48:48 +01:00
Gary Ewan Park
19feb99670
Add github-slug-action to Utility section (#280)
Add github-slug-action to Utility section
2019-12-17 08:16:16 +00:00
Romain Lespinasse
4888f5808d Add github-slug-action to Utility section 2019-12-17 09:02:43 +01:00
Gary Ewan Park
10bbe5ef66
Adding action 'Create Outlook Calendar Event using Microsoft Gra… (#278)
Adding action 'Create Outlook Calendar Event using Microsoft Graph'
2019-12-10 09:38:51 +00:00
Anoop Tatti
6cca8ba98e
Adding action 'Create Outlook Calendar Event using Microsoft Graph'
Link to the repo - https://github.com/anoopt/ms-graph-create-event
2019-12-10 00:14:55 +00:00
Gary Ewan Park
5de0e0ccfb
Add tutorial link for integrating Github actions with Rails (#276)
Add tutorial link for integrating Github actions with Rails
2019-12-08 10:51:25 +00:00
Akshay Birajdar
9653885325 Add tutorial link for integrating Github actions with rails 2019-12-08 13:05:46 +05:30
Sarah Drasner
925858cbfd
Make icon even smaller 2019-12-07 17:57:22 -07:00
Sarah Drasner
8b5187d615
Make the icon smaller 2019-12-07 17:54:29 -07:00
Sarah Drasner
bd633f70a2
Remove status badge heading 2019-12-07 17:53:36 -07:00
Sarah Drasner
f237228fda
Put awesome lint in the h1 with the other badge 2019-12-07 17:51:15 -07:00
Sarah Drasner
447e2afdf3
Delete extra status badge 2019-12-07 16:41:59 -07:00
Sarah Drasner
808db4cc23
Constrict the icon width 2019-12-07 16:22:47 -07:00
Sarah Drasner
5f698af8e8
Constrict the icon width 2019-12-07 16:21:07 -07:00
Sarah Drasner
c4a2dea085 update the contributing.md 2019-12-07 16:02:48 -07:00
Sarah Drasner
1ba1cbf164 update icon for readme 2019-12-07 15:54:41 -07:00
Sarah Drasner
de89f121b8
Merge pull request #275 from bahmutov/patch-1
add action that installs NPM dependencies and caches them
2019-12-07 15:43:15 -07:00
Sarah Drasner
ab54b09f08
Merge pull request #274 from bahmutov/patch-2
Add action to run Cypress tests
2019-12-07 15:42:50 -07:00
Sarah Drasner
a958bf48a2
Merge branch 'master' into patch-2 2019-12-07 15:42:43 -07:00
Sarah Drasner
866518cd8e
Merge pull request #273 from sobolevn/patch-3
Adds dotenv-linter
2019-12-07 15:42:02 -07:00
Gary Ewan Park
67df14f7b1
Update redirected link (#277)
Update redirected link
2019-12-07 20:26:58 +00:00
Shohei Ueda
58dffc268e
Update redirected link 2019-12-08 04:36:57 +09:00
Gleb Bahmutov
90ea481d69
Add action to run Cypress tests
Example action
```yml
name: End-to-end tests
on: [push]
jobs:
  cypress-run:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v1
      # Install NPM dependencies, cache them correctly
      # and run all Cypress tests
      - name: Cypress run
        uses: cypress-io/github-action@v1
```
2019-12-05 08:00:25 -05:00
Gleb Bahmutov
93ac1eb660
add action that installs NPM dependencies and caches them
It is an action for projects that need to run `npm ci` or `yarn --frozen-lockfile` to install NPM dependencies and cache them

```yml
name: main
on: [push]
jobs:
  build-and-test:
    runs-on: ubuntu-latest
    name: Build and test
    steps:
      - uses: actions/checkout@v1
      - uses: bahmutov/npm-install@v1
      - run: npm t
```
2019-12-05 07:58:57 -05:00
Nikita Sobolev
f6f0aaaaa3
Adds dotenv-linter
Adds https://github.com/wemake-services/dotenv-linter
Docs: https://dotenv-linter.readthedocs.io/en/latest/
Action page: https://github.com/marketplace/actions/dotenv-linter

Also updates `wemake-python-styleguide` infromation about `reviewdog`, because as the author of these two packages I consider this feature absolutely worth mentioning.

It is just awesome!
2019-12-04 13:46:55 +03:00
Gary Ewan Park
24c2332778
Assume role AWS added (#271)
Assume role AWS added
2019-12-04 07:41:30 +00:00
Dariusz Dwornikowski
0a22486966 Moved the action to the last position 2019-12-04 08:30:51 +01:00
Gary Ewan Park
7402a5caec
Add Unity actions (#272)
Add Unity actions
2019-12-04 07:27:08 +00:00
Webber Takken
afed4299c9
Fix typo 2019-12-02 20:21:47 +01:00
Webber Takken
ad55c10beb
Add Unity actions
This adds the collection and the test action to the list
2019-12-02 20:14:38 +01:00
Dariusz Dwornikowski
01068cdc64 Assume role AWS added 2019-12-02 10:55:52 +01:00
Gary Ewan Park
d4bd1e3889
linter: Ignore no-dead-urls (#270)
linter: Ignore no-dead-urls
2019-12-02 07:51:45 +00:00