user-agents 1.1.9 → 1.1.10

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.
@@ -128,7 +128,10 @@ jobs:
128
128
  git commit -m 'Regularly scheduled user agent data update.' || true
129
129
  - run:
130
130
  name: Bump the patch version and trigger a new release
131
- command: npm version patch && git push && git push --tags
131
+ command: |
132
+ npm version patch
133
+ git push --set-upstream origin v1-release
134
+ git push --tags
132
135
 
133
136
  workflows:
134
137
  version: 2
@@ -154,13 +157,13 @@ workflows:
154
157
  - checkout:
155
158
  filters:
156
159
  tags:
157
- only: /v[0-9]+(\.[0-9]+)*/
160
+ only: /v1(\.[0-9]+)*/
158
161
  branches:
159
162
  ignore: /.*/
160
163
  - build:
161
164
  filters:
162
165
  tags:
163
- only: /v[0-9]+(\.[0-9]+)*/
166
+ only: /v1(\.[0-9]+)*/
164
167
  branches:
165
168
  ignore: /.*/
166
169
  requires:
@@ -168,7 +171,7 @@ workflows:
168
171
  - test:
169
172
  filters:
170
173
  tags:
171
- only: /v[0-9]+(\.[0-9]+)*/
174
+ only: /v1(\.[0-9]+)*/
172
175
  branches:
173
176
  ignore: /.*/
174
177
  requires:
@@ -176,7 +179,7 @@ workflows:
176
179
  - deploy:
177
180
  filters:
178
181
  tags:
179
- only: /v[0-9]+(\.[0-9]+)*/
182
+ only: /v1(\.[0-9]+)*/
180
183
  branches:
181
184
  ignore: /.*/
182
185
  requires:
@@ -185,11 +188,11 @@ workflows:
185
188
  scheduled-release:
186
189
  triggers:
187
190
  - schedule:
188
- cron: "00 06 * * *"
191
+ cron: "22 12 * * *"
189
192
  filters:
190
193
  branches:
191
194
  only:
192
- - master
195
+ - v1-release
193
196
 
194
197
  jobs:
195
198
  - checkout