Compare commits
10 Commits
changeset-
...
dev
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
28e92a4288 | ||
|
|
a81db56e29 | ||
|
|
3da0cb3336 | ||
|
|
1ea06fd810 | ||
|
|
681f9ba788 | ||
|
|
c93c979e3f | ||
|
|
280117e9ec | ||
|
|
d173651b50 | ||
|
|
1dd662c425 | ||
|
|
1cca8a1623 |
21
.github/workflows/release-branch.yml
vendored
21
.github/workflows/release-branch.yml
vendored
@@ -4,12 +4,17 @@ on:
|
|||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- dev
|
- dev
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
- main
|
- main
|
||||||
|
types:
|
||||||
|
- closed
|
||||||
|
|
||||||
concurrency: ${{ github.workflow }}-${{ github.ref }}
|
concurrency: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
update-release:
|
update-release:
|
||||||
|
if: github.ref_name == 'dev'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
@@ -38,8 +43,20 @@ jobs:
|
|||||||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Update dev branch
|
update-dev:
|
||||||
if: steps.changesets.outputs.hasChangesets == 'false'
|
if: github.ref_name == 'main' && github.event.pull_request.merged == true && github.event.pull_request.title == '🦋 Release branch'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: Update dev branch
|
||||||
|
timeout-minutes: 2
|
||||||
|
env:
|
||||||
|
HUSKY: 0
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Release to dev
|
||||||
uses: devmasx/merge-branch@master
|
uses: devmasx/merge-branch@master
|
||||||
with:
|
with:
|
||||||
type: now
|
type: now
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2023-preset Gustavo "Guz" L. de Mello
|
Copyright (c) 2023-present Gustavo "Guz" L. de Mello
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|||||||
@@ -112,12 +112,12 @@
|
|||||||
<input
|
<input
|
||||||
un-m="l-5"
|
un-m="l-5"
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
name="vertical layout"
|
name="right to left"
|
||||||
id="vertical-input"
|
id="rtl-input"
|
||||||
bind:checked={isRtl}
|
bind:checked={isRtl}
|
||||||
on:input={() => ($id = Math.random())}
|
on:input={() => ($id = Math.random())}
|
||||||
/>
|
/>
|
||||||
<label un-text="sm" for="vertical-input">Right-to-Left</label>
|
<label un-text="sm" for="rtl-input">Right-to-Left</label>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<section un-flex="~ col">
|
<section un-flex="~ col">
|
||||||
|
|||||||
Reference in New Issue
Block a user