Skip to content

test comment posting #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 45 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
2893d62
test comment posting
agneum Jul 13, 2022
598477e
post comment in markdown
agneum Jul 13, 2022
0320905
post comment in markdown
agneum Jul 13, 2022
5484ca2
post comment in markdown
agneum Jul 13, 2022
b645050
post comment in markdown
agneum Jul 13, 2022
5ccd6f7
post comment as a markdown in plain text
agneum Jul 13, 2022
4a22407
post comment markdown
agneum Jul 13, 2022
8173b68
fix quotes to post comment markdown
agneum Jul 13, 2022
02fff45
simplify markdown
agneum Jul 13, 2022
77c875a
simplify markdown
agneum Jul 13, 2022
c33c366
simplify markdown
agneum Jul 13, 2022
2b49d9b
reformat markdown
agneum Jul 13, 2022
f00b189
reformat markdown
agneum Jul 13, 2022
887f4e6
reformat markdown
agneum Jul 13, 2022
910bb2b
simplify markdown
agneum Jul 13, 2022
cd00a72
simplify markdown
agneum Jul 13, 2022
1ed17e6
simplify markdown
agneum Jul 13, 2022
6a20777
simplify markdown
agneum Jul 13, 2022
bbb58c1
simplify markdown
agneum Jul 13, 2022
1282026
update markdown
agneum Jul 13, 2022
2a190ff
single line markdown
agneum Jul 13, 2022
39acf74
single line markdown
agneum Jul 13, 2022
794f3f2
single line markdown
agneum Jul 13, 2022
d4ce0e3
multiline markdown
agneum Jul 13, 2022
72eaf21
multiline markdown
agneum Jul 13, 2022
ca798e0
multiline markdown
agneum Jul 13, 2022
ba24113
multiline markdown
agneum Jul 13, 2022
efe229b
format as a multiline markdown
agneum Jul 13, 2022
0fcb67a
format as a multiline markdown
agneum Jul 13, 2022
bed8f9c
post a multiline comment
agneum Jul 14, 2022
a067afd
post a multiline comment
agneum Jul 14, 2022
6757394
pass an issue number
agneum Jul 14, 2022
68fbf4d
pass an issue number
agneum Jul 14, 2022
85176e9
pass an issue numbergs
agneum Jul 14, 2022
4f7c8e6
pass markdown content
agneum Jul 14, 2022
e233ab9
use env variable
agneum Jul 14, 2022
b8e8b89
use an official github action
agneum Jul 14, 2022
45ebd35
use env variable
agneum Jul 14, 2022
931bfc9
run composite actions
agneum Jul 14, 2022
d556591
change action
agneum Jul 27, 2022
f56e13c
debug input
agneum Jul 28, 2022
ebde35d
test DB migration
agneum Sep 5, 2022
36c4b61
create index concurrently
agneum Sep 6, 2022
e0f2cf0
test updated action
agneum Oct 28, 2022
eac4936
run migration checker on a new machine
agneum Oct 13, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
on: [ push ]
on: [ pull_request ]

jobs:
migration_job:
Expand All @@ -11,7 +11,8 @@ jobs:

# Run DB migrations with the public action
- name: DB migrations checker with DLE
uses: postgres-ai/[email protected]
# uses: postgres-ai/[email protected]
uses: agneum/migration-action@composite-action
id: db-migrations
with:
dbname: test_small
Expand Down Expand Up @@ -39,3 +40,5 @@ jobs:
# Show migration summary
- name: Get the response status
run: echo "${{ steps.db-migration.outputs.response }}"


3 changes: 3 additions & 0 deletions deploy/pgbench-accounts-index-bid.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-- Deploy green-zone:pgbench-accounts-index-bid to pg

create index concurrently bid_idx on pgbench_accounts(bid);
3 changes: 3 additions & 0 deletions revert/pgbench-accounts-index-bid.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-- Revert green-zone:pgbench-accounts-index-bid from pg

drop index concurrently if exists bid_idx;
1 change: 1 addition & 0 deletions sqitch.plan
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@

initial 2021-06-29T04:14:53Z akartasov <[email protected]> # init a database schema
@v0.0.1 2021-06-29T04:20:10Z akartasov <[email protected]> # initial version
pgbench-accounts-index-bid 2022-09-05T09:53:14Z akartasov <[email protected]> # add a new pgbench_accounts index
4 changes: 4 additions & 0 deletions verify/pgbench-accounts-index-bid.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-- Verify green-zone:pgbench-accounts-index-bid on pg

begin;
rollback;